- GPX
-
GPX, o GPS eXchange Format (Formato de Intercambio GPS) es un esquema XML pensado para transferir datos GPS entre aplicaciones. Se puede usar para describir puntos (waypoints), recorridos (tracks), y rutas (routes).
Contenido
Estructura
<?xml version="1.0" encoding="UTF-8" standalone="no" ?> <gpx ...> Metadatos <metadata> ... </metadata> Datos Ejemplos: Track Waypoint <trk> <wpt lat="#" lon="#"> <trkseg> <ele>#</ele> <trkpt lat="#" lon="#"> <name>...</name> <ele>#</ele> ... </trkpt> </wpt> <trkpt ...> <wpt ...> ... ... </trkpt> </wpt> </trkseg> <trkseg> <trkpt ...> ... </trkpt> </trkseg> ... </trk> Fin del fichero </gpx>
Ejemplo
<?xml version="1.0" encoding="UTF-8" standalone="no" ?> <gpx xmlns="http://www.topografix.com/GPX/1/1" creator="byHand" version="1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd"> <wpt lat="39.921055008" lon="3.054223107"> <ele>12.863281</ele> <time>2005-05-16T11:49:06Z</time> <name>Cala Sant Vicenç - Mallorca</name> <sym>City</sym> </wpt> </gpx>
Véase también
En inglés
- Exchangeable image file format
- Geography Markup Language
- Keyhole Markup Language, el formato equivalente compatible con Google Earth.
- UTC
Enlaces externos
En inglés
- Página oficial de GPX
- Crea en línea y gratis ficheros GPX
- GPX POI - Base de datos de puntos de interés (POI) con archivos GPX gratuitos.
Referencias
Categorías:- Siglas de informática
- Protocolos y formatos de nivel de presentación
- XML
Wikimedia foundation. 2010.