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

* New translations en.json (German) * New translations en.json (Italian) * New translations settings.mdx (Italian) * New translations en.json (Italian) * New translations settings.mdx (Italian) * New translations en.json (Portuguese) * New translations en.json (Ukrainian) * New translations en.json (Portuguese) * New translations en.json (Portuguese) * New translations en.json (Portuguese) * New translations en.json (Portuguese) * New translations en.json (Portuguese) * New translations menu.mdx (Portuguese) * New translations toolbar.mdx (Portuguese) * New translations en.json (German) * New translations translation.mdx (Portuguese) * New translations en.json (Chinese Simplified) * New translations toolbar.mdx (Polish) * New translations menu.mdx (Portuguese) * New translations getting-started.mdx (German) * New translations edit.mdx (German) * New translations view.mdx (German) * New translations funding.mdx (Catalan) * New translations edit.mdx (Czech) * New translations file.mdx (Czech) * New translations settings.mdx (Czech) * New translations settings.mdx (Czech) * New translations settings.mdx (Czech) * New translations edit.mdx (Czech) * New translations view.mdx (Czech) * New translations extract.mdx (Czech) * New translations merge.mdx (Czech) * New translations scissors.mdx (Czech) * New translations time.mdx (Czech) * New translations elevation.mdx (Czech) * New translations extract.mdx (Czech) * New translations clean.mdx (Czech) * New translations en.json (Danish) * New translations faq.mdx (Czech) * New translations faq.mdx (Czech) * New translations en.json (Czech) * New translations files-and-stats.mdx (Czech) * New translations getting-started.mdx (Czech) * New translations map-controls.mdx (Czech) * New translations menu.mdx (Czech) * New translations toolbar.mdx (Czech) * New translations files-and-stats.mdx (Czech) * New translations edit.mdx (Czech) * New translations view.mdx (Czech) * New translations files-and-stats.mdx (Czech) * New translations files-and-stats.mdx (Czech) * New translations gpx.mdx (Czech) * New translations gpx.mdx (Czech) * New translations integration.mdx (Czech) * New translations view.mdx (Czech) * New translations map-controls.mdx (Czech) * New translations integration.mdx (Czech) * New translations map-controls.mdx (Czech) * New translations toolbar.mdx (Czech) * New translations en.json (Czech) * New translations settings.mdx (Czech) * New translations en.json (Czech) * New translations en.json (Czech) * New translations en.json (Czech) * New translations en.json (Czech) * New translations en.json (Czech) * New translations en.json (Basque) * New translations files-and-stats.mdx (Basque) * New translations getting-started.mdx (Basque) * New translations gpx.mdx (Basque) * New translations funding.mdx (Basque) * New translations mapbox.mdx (Basque) * New translations translation.mdx (Basque) * New translations integration.mdx (Basque) * New translations map-controls.mdx (Basque) * New translations menu.mdx (Basque) * New translations edit.mdx (Basque) * New translations file.mdx (Basque) * New translations settings.mdx (Basque) * New translations view.mdx (Basque) * New translations toolbar.mdx (Basque) * New translations clean.mdx (Basque) * New translations extract.mdx (Basque) * New translations merge.mdx (Basque) * New translations minify.mdx (Basque) * New translations poi.mdx (Basque) * New translations routing.mdx (Basque) * New translations scissors.mdx (Basque) * New translations time.mdx (Basque) * New translations faq.mdx (Basque) * New translations elevation.mdx (Basque) * New translations settings.mdx (Portuguese)
33 lines
1.4 KiB
Plaintext
33 lines
1.4 KiB
Plaintext
---
|
|
title: Crop and split
|
|
---
|
|
|
|
<script>
|
|
import { ScissorsIcon } from 'lucide-svelte';
|
|
import Scissors from '$lib/components/toolbar/tools/scissors/Scissors.svelte';
|
|
import DocsImage from '$lib/components/docs/DocsImage.svelte';
|
|
</script>
|
|
|
|
# <ScissorsIcon size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
|
|
|
|
## Crop
|
|
|
|
Using the slider, you can define the part of the selected trace that you want to keep.
|
|
The start and end markers on the map and the [statistics and elevation profile](../files-and-stats) are updated in real time to reflect the selection.
|
|
Alternatively, you can drag a selection rectangle directly on the elevation profile.
|
|
Validate the selection when you are satisfied with the result.
|
|
|
|
<div class="flex flex-row justify-center">
|
|
<Scissors class="text-foreground p-3 border rounded-md shadow-lg" />
|
|
</div>
|
|
|
|
## Split
|
|
|
|
To split the selected trace into two parts, click on one of the split markers displayed along the trace.
|
|
To split at a specific point of your choice, hover over the trace on the map.
|
|
Scissors will appear at the cursor position, showing that you can split the trace at that point.
|
|
|
|
You can choose to split the trace into two GPX files, or to keep the split parts in the same file as [tracks or segments](../gpx).
|
|
|
|
<DocsImage src="tools/split" alt="Hovering over the selected trace turns your cursor into scissors." />
|