Files
gpx.studio/website/src/lib/docs/en/toolbar/extract.mdx

26 lines
1022 B
Plaintext
Raw Normal View History

2024-07-08 22:43:50 +02:00
---
title: Extract
---
2024-07-09 22:49:57 +02:00
<script>
2025-06-21 21:07:36 +02:00
import { Ungroup } from '@lucide/svelte';
2024-07-09 22:49:57 +02:00
import Extract from '$lib/components/toolbar/tools/Extract.svelte';
2024-07-10 15:09:52 +02:00
import DocsNote from '$lib/components/docs/DocsNote.svelte';
2024-07-09 22:49:57 +02:00
</script>
# <Ungroup size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
2024-07-10 15:09:52 +02:00
This tool allows you to extract [tracks (or segments)](../gpx) from files (or tracks) containing multiple of them.
2024-07-09 22:49:57 +02:00
<div class="flex flex-row justify-center">
<Extract class="text-foreground p-3 border rounded-md shadow-lg" />
2024-07-10 15:09:52 +02:00
</div>
Applying the tool to a file containing multiple tracks will create a new file for each of the tracks it contains.
Similarly, applying the tool to a track containing multiple segments will create (in the same file) a new track for each of the segments it contains.
<DocsNote>
2024-07-23 13:01:46 +02:00
When extracting the tracks from a file containing <a href="../gpx">points of interest</a>, the tool will automatically assign each point of interest to the track it is closest to.
2024-07-23 13:01:46 +02:00
2024-07-10 15:09:52 +02:00
</DocsNote>