{% extends "master.html" %} {% block title %}Koordinaten-Rechner{% endblock %} {% block content %}

Koordinaten-Rechner

{% if not result %}

Werkzeug für die Koordinatenumrechnung. Das Quellformat braucht nicht angegeben zu werden, es sollte automatisch erkannt werden. Wenn mehr als eine Koordinate gleichzeitig umgerechnet werden soll, dann bitte pro Zeile eine Koordinate angeben.

{% endif %} {% if result and not no_geoformat %}

Winterrodeln-Format

{% for line in result %} {{geo_winterrodeln([line])}}
{% endfor %}

{% endif %} {% if result and not no_gmapsformat %}

Google Maps Plugin Format

{% for line in result %} {{geo_gmapplugin([line])}}
{% endfor %}

{% endif %} {% if result and not no_gpxformat %}

GPX Format

{% for line in result %} {{geo_gpx([line])}}
{% endfor %}

{% endif %} {% if result and not no_geocachingformat %}

Geocaching-Format

{% for line in result %} {{geo_geocaching([line])}}
{% endfor %}

{% endif %}
Beispiel

47.222134 N 11.467211 E
47.222143 N 11.467209 E
47.222153 N 11.467210 E

N 47° 14.912 E 011° 27.432
N 47° 14.925 E 011° 27.439
N 47° 14.936 E 011° 27.440

47.232922, 11.452239
47.233008, 11.452201
47.233810, 11.452150

Höhe weglassen
Weg vereinfachen (noch nicht implementiert)
Geogr. Länge und Breite vertauschen
Zielformat <geo> auslassen47.222134 N 11.467211 E
Zielformat <GPX> auslassen<trkpt lat="47.181289" lon="11.408827"><ele>1090.57</ele></trkpt>
Zielformat Google Maps Plugin auslassen47.232922, 11.452239
Zielformat Geocaching auslassenN 47° 14.029 E 011° 27.129
{% endblock %}