2024-07-08 22:43:50 +02:00
|
|
|
---
|
|
|
|
|
title: Merge
|
|
|
|
|
---
|
|
|
|
|
|
2024-07-09 22:49:57 +02:00
|
|
|
<script>
|
2025-11-12 17:45:55 +01:00
|
|
|
import { Group } from '@lucide/svelte';
|
2024-07-09 22:49:57 +02:00
|
|
|
import Merge from '$lib/components/toolbar/tools/Merge.svelte';
|
2026-03-28 11:40:27 +01:00
|
|
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
2024-07-09 22:49:57 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
# <Group size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
|
|
|
|
|
|
2024-07-23 11:50:41 +02:00
|
|
|
To use this tool, you need to [select](../files-and-stats) multiple files, [tracks, or segments](../gpx).
|
2024-07-10 15:09:52 +02:00
|
|
|
|
|
|
|
|
- If your goal is to create a single continuous trace from your selection, use the **Connect the traces** option and validate.
|
|
|
|
|
- The second option can be used to create or manage files with multiple [tracks or segments](../gpx).
|
|
|
|
|
Merging files (or tracks) will result in a single file (or track) containing all tracks (or segments) from the selection.
|
|
|
|
|
|
2026-03-28 11:42:11 +01:00
|
|
|
<DocsNote>
|
2026-03-28 11:40:27 +01:00
|
|
|
|
|
|
|
|
Selected items are merged in the order they appear in the files list.
|
|
|
|
|
Reorder items by drag-and-drop if needed.
|
|
|
|
|
|
|
|
|
|
</DocsNote>
|
|
|
|
|
|
2024-07-09 22:49:57 +02:00
|
|
|
<div class="flex flex-row justify-center">
|
|
|
|
|
<Merge class="text-foreground p-3 border rounded-md shadow-lg" />
|
2024-07-10 15:09:52 +02:00
|
|
|
</div>
|