X-Git-Url: https://git.toastfreeware.priv.at/philipp/winterrodeln/wradmin.git/blobdiff_plain/355802a7214e1ba0764b70bad0299641dbd634c2..931867c3a0a3842dd9cad2a204ec79686deaf952:/wradmin/templates/coordtool.html diff --git a/wradmin/templates/coordtool.html b/wradmin/templates/coordtool.html index 6d1e6ed..8e3f1b7 100644 --- a/wradmin/templates/coordtool.html +++ b/wradmin/templates/coordtool.html @@ -1,66 +1,73 @@ - - - - - - - Koordinaten-Rechner - - - +{% extends "master.html" %} +{% block title %}Koordinaten-Rechner{% endblock %} +{% block content %}

Koordinaten-Rechner

-

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.

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

Winterrodeln-Format

-

- ${c.geo_winterrodeln.from_python([line])}
+{% if result and not no_geoformat %} +

Winterrodeln-Format

+

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

+{% endif %} -

Google Maps Plugin Format

-

- ${c.geo_gmapplugin.from_python([line])}
+{% if result and not no_gmapsformat %} +

Google Maps Plugin Format

+

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

+{% endif %} -

GPX Format

-

- ${c.geo_gpx.from_python([line])}
+{% if result and not no_gpxformat %} +

GPX Format

+

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

+{% endif %} -

Geocaching-Format

-

- ${c.geo_geocaching.from_python([line])}
+{% 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

+

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
Höhe weglassen
Weg vereinfachen (noch nicht implementiert)
Geogr. Länge und Breite vertauschen
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
Zielformat Geocaching auslassenN 47° 14.029 E 011° 27.129
- - +{% endblock %}