mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-08-31 23:53:25 +00:00

* New translations en.json (Polish) * New translations en.json (Italian) * New translations en.json (Finnish) * New translations files-and-stats.mdx (Finnish) * New translations getting-started.mdx (Finnish) * New translations gpx.mdx (Finnish) * New translations funding.mdx (Finnish) * New translations mapbox.mdx (Finnish) * New translations translation.mdx (Finnish) * New translations integration.mdx (Finnish) * New translations map-controls.mdx (Finnish) * New translations menu.mdx (Finnish) * New translations edit.mdx (Finnish) * New translations file.mdx (Finnish) * New translations settings.mdx (Finnish) * New translations view.mdx (Finnish) * New translations toolbar.mdx (Finnish) * New translations clean.mdx (Finnish) * New translations extract.mdx (Finnish) * New translations merge.mdx (Finnish) * New translations minify.mdx (Finnish) * New translations poi.mdx (Finnish) * New translations routing.mdx (Finnish) * New translations scissors.mdx (Finnish) * New translations time.mdx (Finnish) * New translations faq.mdx (Finnish) * New translations elevation.mdx (Finnish) * New translations en.json (Serbian (Latin)) * New translations files-and-stats.mdx (Serbian (Latin)) * New translations getting-started.mdx (Serbian (Latin)) * New translations gpx.mdx (Serbian (Latin)) * New translations funding.mdx (Serbian (Latin)) * New translations mapbox.mdx (Serbian (Latin)) * New translations translation.mdx (Serbian (Latin)) * New translations integration.mdx (Serbian (Latin)) * New translations map-controls.mdx (Serbian (Latin)) * New translations menu.mdx (Serbian (Latin)) * New translations edit.mdx (Serbian (Latin)) * New translations file.mdx (Serbian (Latin)) * New translations settings.mdx (Serbian (Latin)) * New translations view.mdx (Serbian (Latin)) * New translations toolbar.mdx (Serbian (Latin)) * New translations clean.mdx (Serbian (Latin)) * New translations extract.mdx (Serbian (Latin)) * New translations merge.mdx (Serbian (Latin)) * New translations minify.mdx (Serbian (Latin)) * New translations poi.mdx (Serbian (Latin)) * New translations routing.mdx (Serbian (Latin)) * New translations scissors.mdx (Serbian (Latin)) * New translations time.mdx (Serbian (Latin)) * New translations faq.mdx (Serbian (Latin)) * New translations elevation.mdx (Serbian (Latin)) * New translations en.json (Italian) * New translations clean.mdx (Catalan) * New translations elevation.mdx (Catalan) * New translations settings.mdx (Catalan) * New translations en.json (Romanian) * New translations en.json (French) * New translations en.json (Spanish) * New translations en.json (Catalan) * New translations en.json (Czech) * New translations en.json (German) * New translations en.json (Greek) * New translations en.json (Hungarian) * New translations en.json (Italian) * New translations en.json (Lithuanian) * New translations en.json (Dutch) * New translations en.json (Norwegian) * New translations en.json (Polish) * New translations en.json (Portuguese) * New translations en.json (Russian) * New translations en.json (Swedish) * New translations en.json (Chinese Simplified) * New translations en.json (Vietnamese) * New translations en.json (Portuguese, Brazilian) * New translations en.json (Korean) * New translations en.json (Hebrew) * New translations en.json (Finnish) * New translations en.json (Serbian (Latin)) * Update source file en.json * New translations en.json (Romanian) * New translations en.json (French) * New translations en.json (Spanish) * New translations en.json (Catalan) * New translations en.json (Czech) * New translations en.json (German) * New translations en.json (Greek) * New translations en.json (Hungarian) * New translations en.json (Italian) * New translations en.json (Lithuanian) * New translations en.json (Dutch) * New translations en.json (Norwegian) * New translations en.json (Polish) * New translations en.json (Portuguese) * New translations en.json (Russian) * New translations en.json (Swedish) * New translations en.json (Chinese Simplified) * New translations en.json (Vietnamese) * New translations en.json (Portuguese, Brazilian) * New translations en.json (Korean) * New translations en.json (Hebrew) * New translations en.json (Finnish) * New translations en.json (Serbian (Latin)) * Update source file en.json * New translations en.json (French)
35 lines
1.7 KiB
Plaintext
35 lines
1.7 KiB
Plaintext
---
|
|
title: GPX file format
|
|
---
|
|
|
|
<script>
|
|
import { Waypoints, MapPin } from 'lucide-svelte';
|
|
</script>
|
|
|
|
# { title }
|
|
|
|
The <a href="https://www.topografix.com/gpx.asp" target="_blank">GPX file format</a> is an open standard for exchanging GPS data between applications and GPS devices.
|
|
It essentially consists of a series of GPS points encoding one or multiple GPS traces, and, optionally, some points of interest.
|
|
|
|
GPX files may also contain metadata, of which the **name** and **description** fields are the most useful for users.
|
|
|
|
### <Waypoints size="16" class="inline-block" style="margin-bottom: 2px" /> Tracks, segments, and GPS points
|
|
|
|
As mentioned above, a GPX file can contain multiple GPS traces.
|
|
These are organized in a hierarchical structure, with tracks at the top level.
|
|
|
|
- A **track** is made of a sequence of disconnected segments.
|
|
Furthermore, it can contain metadata such as a **name**, a **description**, and **appearance properties**.
|
|
- A **segment** is a sequence of GPS points that form a continuous path.
|
|
- A **GPS point** is a location with a latitude, a longitude, and optionally a timestamp and an altitude.
|
|
Some devices also store additional information such as heart rate, cadence, temperature, and power.
|
|
|
|
In most cases, GPX files contain a single track with a single segment.
|
|
However, the hierarchy described above allows for more advanced use cases, such as planning multi-day trips with several variants for each day.
|
|
|
|
### <MapPin size="16" class="inline-block" style="margin-bottom: 2px" /> Points of interest
|
|
|
|
**Points of interest** (technically called _waypoints_) represent locations of interest to show either on a GPS device or on a digital map.
|
|
|
|
In addition to its coordinates, a point of interest can have a **name** and a **description**.
|