1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4 <html xmlns="http://www.w3.org/1999/xhtml"
5 xmlns:py="http://genshi.edgewall.org/"
6 xmlns:xi="http://www.w3.org/2001/XInclude">
7 <xi:include href="master.html" />
10 <title>Koordinaten-Rechner</title>
15 <h2>Koordinaten-Rechner</h2>
17 <p py:if="not c.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.</p>
19 <h3 py:if="c.result">Winterrodeln-Format</h3>
21 <py:for each="line in c.result">${c.geo_winterrodeln.from_python([line])}<br/></py:for>
24 <h3 py:if="c.result">Geocaching-Format</h3>
26 <py:for each="line in c.result">${c.geo_geocaching.from_python([line])}<br/></py:for>
29 <form action="${h.url_for(controller='coordtool', action='convert')}" method="post">
31 <tr><th></th><th>Beispiel</th></tr>
32 <tr><td><textarea name="input" cols="70" rows="10"/></td>
34 <p>47.222134 N 11.467211 E<br/>
35 47.222143 N 11.467209 E<br/>
36 47.222153 N 11.467210 E</p>
37 <p>N 47° 14.912 E 011° 27.432<br/>
38 N 47° 14.925 E 011° 27.439<br/>
39 N 47° 14.936 E 011° 27.440</p>
41 <tr><td><input type="checkbox" name="no_height" />Höhe weglassen</td><td></td></tr>
42 <tr><td><input type="checkbox" name="simplify" /> Weg vereinfachen</td><td></td></tr>
43 <tr><td><input type="checkbox" name="swap_latlon" />Geogr. Länge und Breite vertauschen</td><td></td></tr>
44 <tr><td><input type="checkbox" name="no_geoformat" /> Zielformat <strong><geo></strong> auslassen</td><td>47.222134 N 11.467211 E</td></tr>
45 <tr><td><input type="checkbox" name="no_gpxformat" /> Zielformat <strong><GPX></strong> auslassen</td><td><trkpt lat="47.181289" lon="11.408827"><ele>1090.57</ele></trkpt></td></tr>
46 <tr><td><input type="checkbox" name="no_gmapsformat" /> Zielformat <strong>Google Maps Plugin</strong> auslassen</td><td>47.232922, 11.452239</td></tr>
47 <tr><td><input type="submit" value="Konvertieren"/></td><td></td></tr>