{% extends "upload/layer_upload_base.html" %} {% load i18n %} {% load staticfiles %} {% block body_class %}data data-list upload{% endblock %} {% block title %} {% trans "Upload Layer" %} - {{ block.super }} {% endblock %} {% block body %}

{% trans "Provide CRS for " %} "{{ layer_name }}"

{% csrf_token %}

{% trans "Coordinate Reference System" %}

{% if native_crs %}

{% blocktrans %} A coordinate reference system for this layer could not be determined. Locate or enter the appropriate ESPG code for this layer below. One way to do this is do visit: prj2epsg and enter the following: {% endblocktrans %}

    {{ native_crs }}
    
{{ form.srs.errors }} {{ form.srs }}
{% else %}

{% blocktrans %} There is a problem recognizing the projection of this data. Please reproject this data to a more common projection. {% endblocktrans %}

{% endif %}
{% endblock %}