{% 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 %}

Coordinate Reference System

{% if native_crs %}

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:

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

There is a problem recognizing the projection of this data. Please reproject this data to a more common projection.

{% endif %}
{% endblock %}