New translations minify.mdx (Norwegian)
This commit is contained in:
parent
3ce6003fa5
commit
f1f052a2c1
1 changed files with 28 additions and 0 deletions
28
website/src/lib/docs/no/toolbar/minify.mdx
Normal file
28
website/src/lib/docs/no/toolbar/minify.mdx
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
---
|
||||||
|
title: Minify
|
||||||
|
---
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { Filter } from 'lucide-svelte';
|
||||||
|
import Reduce from '$lib/components/toolbar/tools/Reduce.svelte';
|
||||||
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
|
</script>
|
||||||
|
|
||||||
|
# <Filter size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
|
||||||
|
|
||||||
|
This tool can be used to reduce the number of GPS points in a trace, which can be useful for decreasing its size.
|
||||||
|
|
||||||
|
You can adjust the tolerance of the simplification algorithm using the slider, and see the number of points that will be kept, as well as the simplified trace on the map.
|
||||||
|
|
||||||
|
<div class="flex flex-row justify-center">
|
||||||
|
<Reduce class="text-foreground p-3 border rounded-md shadow-lg" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<DocsNote>
|
||||||
|
|
||||||
|
```
|
||||||
|
The tolerance value represents the maximum distance allowed between the original trace and the simplified trace.
|
||||||
|
You can read more about the algorithm used <a href="https://en.wikipedia.org/wiki/Ramer%E2%80%93Douglas%E2%80%93Peucker_algorithm" target="_blank">here</a>.
|
||||||
|
```
|
||||||
|
|
||||||
|
</DocsNote>
|
||||||
Loading…
Reference in a new issue