- <th>Bounding box:</th>
- <% if changeset_details.max_lat.nil? or changeset_details.min_lat.nil? or changeset_details.max_lon.nil? or changeset_details.min_lon.nil? %>
- <td>No bounding box has been stored for this changeset.</td>
- <% else %>
+ <th><%= t 'browse.changeset_details.bounding_box' %></th>
+ <% unless changeset_details.has_valid_bbox? %>
+ <td><%= t 'browse.changeset_details.no_bounding_box' %></td>
+ <% else
+ minlon = changeset_details.min_lon/GeoRecord::SCALE.to_f
+ minlat = changeset_details.min_lat/GeoRecord::SCALE.to_f
+ maxlon = changeset_details.max_lon/GeoRecord::SCALE.to_f
+ maxlat = changeset_details.max_lat/GeoRecord::SCALE.to_f
+ %>