{% load i18n window_field %}{% if PROFILE.mapping and geo_item.main_geodata %}
{% with geodata=geo_item.main_geodata %}
{% if geodata.cached_x or geodata.cached_z %}
{% trans "Coordinates" %}
{% with coordinates=geodata.display_coordinates %}
{% trans "X:"%} {{coordinates.0|default_if_none:"-"}}
{% if geodata.estimated_error_x %} ({% trans "error:" %} {{geodata.estimated_error_x}}){% endif %},
{% trans "Y:"%} {{coordinates.1|default_if_none:"-"}}
{% if geodata.estimated_error_y %} ({% trans "error:" %} {{geodata.estimated_error_y}}){% endif %},
{% endwith %}
{% trans "Z:"%} {{geodata.z|default_if_none:"-"}}
{% if geodata.estimated_error_z %} ({% trans "error:" %} {{geodata.estimated_error_z}}){% endif %}
{% with srs=geodata.display_spatial_reference_system %}
{% if srs %} – {{srs.label}} - {% trans "SRID"%} {{srs.srid}} {% endif %}
{% endwith %}