mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-08-30 23:30:04 +00:00

* New translations en.json (Chinese Simplified) * New translations poi.mdx (Basque) * New translations en.json (Swedish) * New translations en.json (Polish) * New translations en.json (Swedish) * New translations files-and-stats.mdx (Swedish) * New translations integration.mdx (Swedish) * New translations getting-started.mdx (Swedish) * New translations gpx.mdx (Swedish) * New translations files-and-stats.mdx (Swedish) * New translations gpx.mdx (Swedish) * New translations routing.mdx (Swedish) * New translations elevation.mdx (Swedish) * New translations minify.mdx (Swedish) * New translations routing.mdx (Swedish) * New translations scissors.mdx (Swedish) * New translations faq.mdx (Swedish) * New translations edit.mdx (Swedish) * New translations settings.mdx (Swedish) * New translations view.mdx (Swedish) * New translations map-controls.mdx (Swedish) * New translations menu.mdx (Swedish) * New translations edit.mdx (Swedish) * New translations files-and-stats.mdx (Swedish) * New translations getting-started.mdx (Swedish) * New translations gpx.mdx (Swedish) * New translations integration.mdx (Swedish) * New translations map-controls.mdx (Swedish) * New translations menu.mdx (Swedish) * New translations edit.mdx (Swedish) * New translations routing.mdx (Swedish) * New translations scissors.mdx (Swedish) * New translations time.mdx (Swedish) * New translations extract.mdx (Swedish) * New translations merge.mdx (Swedish) * New translations minify.mdx (Swedish) * New translations poi.mdx (Swedish) * New translations routing.mdx (Swedish) * New translations elevation.mdx (Swedish) * New translations en.json (Swedish) * New translations edit.mdx (Swedish) * New translations file.mdx (Swedish) * New translations view.mdx (Swedish) * New translations toolbar.mdx (Swedish) * New translations clean.mdx (Swedish) * New translations files-and-stats.mdx (Swedish) * New translations map-controls.mdx (Swedish) * New translations minify.mdx (Swedish) * New translations poi.mdx (Swedish) * New translations routing.mdx (Swedish) * New translations scissors.mdx (Swedish) * New translations faq.mdx (Swedish)
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-filer kan också innehålla metadata, varav **namn** och **beskrivning** fälten är de mest användbara för användare.
|
|
|
|
### <Waypoints size="16" class="inline-block" style="margin-bottom: 2px" /> Spår, segment och GPS-punkter
|
|
|
|
Som nämnts ovan kan en GPX-fil innehålla flera GPS-spår.
|
|
These are organized in a hierarchical structure, with tracks at the top level.
|
|
|
|
- Ett **spår** består av en sekvens av oavbrutna segment.
|
|
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.
|
|
Några enheter lagrar också mer information som puls, kadens, temperatur och kraft.
|
|
|
|
In most cases, GPX files contain a single track with a single segment.
|
|
Men, hierarkin som beskrivs ovan tillåter några fler avancerade användningsfall som att planera flerdagsresor med flera varianter för varje dag.
|
|
|
|
### <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.
|
|
|
|
Utöver dess koordinater kan en Intressant plats ha ett **namn** och en **beskrivnng**.
|