@jjlmoya/utils-drones 1.14.0 → 1.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/category/index.ts +2 -1
- package/src/entries.ts +4 -1
- package/src/index.ts +1 -0
- package/src/pages/[locale]/[slug].astro +30 -14
- package/src/tests/locale_completeness.test.ts +4 -22
- package/src/tests/shared-test-helpers.ts +56 -0
- package/src/tests/tool_exports.test.ts +34 -0
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/antenna-length-calculator/bibliography.astro +3 -11
- package/src/tool/antenna-length-calculator/bibliography.ts +6 -0
- package/src/tool/antenna-length-calculator/i18n/de.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/en.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/es.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/fr.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/id.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/it.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/ja.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/ko.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/nl.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/pl.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/pt.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/ru.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/sv.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/tr.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/zh.ts +2 -8
- package/src/tool/antenna-length-calculator/seo.astro +2 -26
- package/src/tool/drone-flight-time/bibliography.astro +3 -11
- package/src/tool/drone-flight-time/bibliography.ts +7 -0
- package/src/tool/drone-flight-time/i18n/de.ts +2 -9
- package/src/tool/drone-flight-time/i18n/en.ts +2 -9
- package/src/tool/drone-flight-time/i18n/es.ts +2 -9
- package/src/tool/drone-flight-time/i18n/fr.ts +2 -9
- package/src/tool/drone-flight-time/i18n/id.ts +2 -9
- package/src/tool/drone-flight-time/i18n/it.ts +2 -9
- package/src/tool/drone-flight-time/i18n/ja.ts +2 -9
- package/src/tool/drone-flight-time/i18n/ko.ts +2 -9
- package/src/tool/drone-flight-time/i18n/nl.ts +2 -9
- package/src/tool/drone-flight-time/i18n/pl.ts +2 -9
- package/src/tool/drone-flight-time/i18n/pt.ts +2 -9
- package/src/tool/drone-flight-time/i18n/ru.ts +2 -9
- package/src/tool/drone-flight-time/i18n/sv.ts +2 -9
- package/src/tool/drone-flight-time/i18n/tr.ts +2 -9
- package/src/tool/drone-flight-time/i18n/zh.ts +2 -9
- package/src/tool/drone-flight-time/seo.astro +2 -18
- package/src/tool/drone-power-analyzer/bibliography.astro +6 -0
- package/src/tool/drone-power-analyzer/bibliography.ts +7 -0
- package/src/tool/drone-power-analyzer/component.astro +210 -0
- package/src/tool/drone-power-analyzer/components/FlightProfile.astro +37 -0
- package/src/tool/drone-power-analyzer/components/MotorConfig.astro +46 -0
- package/src/tool/drone-power-analyzer/components/PowerGauge.astro +48 -0
- package/src/tool/drone-power-analyzer/components/WeightConfig.astro +49 -0
- package/src/tool/drone-power-analyzer/drone-power-analyzer.css +535 -0
- package/src/tool/drone-power-analyzer/entry.ts +29 -0
- package/src/tool/drone-power-analyzer/i18n/de.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/en.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/es.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/fr.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/id.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/it.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/ja.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/ko.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/nl.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/pl.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/pt.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/ru.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/sv.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/tr.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/zh.ts +203 -0
- package/src/tool/drone-power-analyzer/index.ts +8 -0
- package/src/tool/drone-power-analyzer/seo.astro +15 -0
- package/src/tool/gps-coordinates-converter/bibliography.astro +3 -11
- package/src/tool/gps-coordinates-converter/bibliography.ts +12 -0
- package/src/tool/gps-coordinates-converter/components/GpsMap.astro +3 -2
- package/src/tool/gps-coordinates-converter/gps-coordinates-converter.css +196 -188
- package/src/tool/gps-coordinates-converter/i18n/de.ts +35 -36
- package/src/tool/gps-coordinates-converter/i18n/en.ts +4 -14
- package/src/tool/gps-coordinates-converter/i18n/es.ts +4 -14
- package/src/tool/gps-coordinates-converter/i18n/fr.ts +4 -14
- package/src/tool/gps-coordinates-converter/i18n/id.ts +36 -37
- package/src/tool/gps-coordinates-converter/i18n/it.ts +35 -36
- package/src/tool/gps-coordinates-converter/i18n/ja.ts +19 -20
- package/src/tool/gps-coordinates-converter/i18n/ko.ts +20 -21
- package/src/tool/gps-coordinates-converter/i18n/nl.ts +33 -36
- package/src/tool/gps-coordinates-converter/i18n/pl.ts +19 -20
- package/src/tool/gps-coordinates-converter/i18n/pt.ts +19 -20
- package/src/tool/gps-coordinates-converter/i18n/ru.ts +19 -20
- package/src/tool/gps-coordinates-converter/i18n/sv.ts +19 -20
- package/src/tool/gps-coordinates-converter/i18n/tr.ts +19 -20
- package/src/tool/gps-coordinates-converter/i18n/zh.ts +20 -21
- package/src/tool/gps-coordinates-converter/seo.astro +2 -26
- package/src/tools.ts +3 -0
- package/src/types.ts +1 -3
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { GpsCoordinatesConverterLocaleContent } from '../index';
|
|
2
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
3
4
|
|
|
4
5
|
const slug = 'gps-koordinaten-umrechner';
|
|
5
6
|
const title = 'GPS Koordinaten Umrechner fur Breitengrad und Laengengrad';
|
|
@@ -7,20 +8,20 @@ const description = 'Wandeln Sie GPS-Koordinaten zwischen Dezimalgrad (DD), Grad
|
|
|
7
8
|
|
|
8
9
|
const faqItems = [
|
|
9
10
|
{
|
|
10
|
-
question: '
|
|
11
|
-
answer: `DD (
|
|
11
|
+
question: 'Was ist der Unterschied zwischen DD und DMS?',
|
|
12
|
+
answer: `DD (Dezimalgrad) verwendet eine einzelne Zahl mit Dezimalstellen (z. B. 51.50). DMS (Grad, Minuten, Sekunden) unterteilt das Grad in sexagesimale Bruchteile (z. B. 51° 30' 0").`,
|
|
12
13
|
},
|
|
13
14
|
{
|
|
14
|
-
question: '
|
|
15
|
-
answer: '
|
|
15
|
+
question: 'Warum werden negative Koordinaten verwendet?',
|
|
16
|
+
answer: 'Im Dezimalsystem (DD) werden Breitengrade südlich des Äquators und Längengrade westlich von Greenwich mit einem Minuszeichen gekennzeichnet, um mathematische Berechnungen zu erleichtern.',
|
|
16
17
|
},
|
|
17
18
|
{
|
|
18
|
-
question: '
|
|
19
|
-
answer: '
|
|
19
|
+
question: 'Wie viel Präzision verliere ich beim Umrechnen?',
|
|
20
|
+
answer: 'Unser Tool verwendet Gleitkommazahlen mit doppelter Genauigkeit. Bei 6 Dezimalstellen in DD beträgt die Genauigkeit etwa 11 Zentimeter, was für Drohnen und zivile Navigation mehr als ausreichend ist.',
|
|
20
21
|
},
|
|
21
22
|
{
|
|
22
|
-
question: '
|
|
23
|
-
answer: '
|
|
23
|
+
question: 'Funktioniert dieses Tool offline?',
|
|
24
|
+
answer: 'Ja, sobald die Seite geladen ist, erfolgt die gesamte Umrechnungslogik lokal (clientseitig). Nur die Karte benötigt eine Verbindung, um neue Kacheln herunterzuladen.',
|
|
24
25
|
},
|
|
25
26
|
];
|
|
26
27
|
|
|
@@ -43,26 +44,26 @@ const schemas: GpsCoordinatesConverterLocaleContent['schemas'] = [
|
|
|
43
44
|
{
|
|
44
45
|
'@type': 'HowToStep',
|
|
45
46
|
position: 1,
|
|
46
|
-
name: '
|
|
47
|
-
text: '
|
|
47
|
+
name: 'Koordinaten eingeben',
|
|
48
|
+
text: 'Geben Sie Ihre Koordinaten entweder im Format Dezimalgrad (DD) oder Grad, Minuten, Sekunden (DMS) ein.',
|
|
48
49
|
},
|
|
49
50
|
{
|
|
50
51
|
'@type': 'HowToStep',
|
|
51
52
|
position: 2,
|
|
52
|
-
name: '
|
|
53
|
-
text: '
|
|
53
|
+
name: 'Umrechnung überprüfen',
|
|
54
|
+
text: 'Das Tool zeigt sofort die umgerechneten Koordinaten in allen unterstützten Formaten an.',
|
|
54
55
|
},
|
|
55
56
|
{
|
|
56
57
|
'@type': 'HowToStep',
|
|
57
58
|
position: 3,
|
|
58
|
-
name: '
|
|
59
|
-
text: '
|
|
59
|
+
name: 'Auf Karte verifizieren',
|
|
60
|
+
text: 'Überprüfen Sie die Kartenvisualisierung, um sicherzustellen, dass die Koordinaten auf den richtigen Ort zeigen.',
|
|
60
61
|
},
|
|
61
62
|
{
|
|
62
63
|
'@type': 'HowToStep',
|
|
63
64
|
position: 4,
|
|
64
|
-
name: '
|
|
65
|
-
text: '
|
|
65
|
+
name: 'Ergebnis kopieren',
|
|
66
|
+
text: 'Kopieren Sie die umgerechneten Koordinaten in Ihre Zwischenablage für die Verwendung in Navigationssystemen oder bei der Missionsplanung.',
|
|
66
67
|
},
|
|
67
68
|
],
|
|
68
69
|
} as WithContext<HowTo>,
|
|
@@ -82,25 +83,26 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
82
83
|
slug,
|
|
83
84
|
title,
|
|
84
85
|
description,
|
|
85
|
-
faqTitle: 'Häufig gestellte Fragen',
|
|
86
|
-
bibliographyTitle: 'Referenzhandbücher',
|
|
87
86
|
ui: {
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
87
|
+
decimalDD: 'Dezimal (DD)',
|
|
88
|
+
degreesGMS: 'Grad (DMS)',
|
|
89
|
+
useLocation: 'Meinen Standort verwenden',
|
|
90
|
+
lat: 'Breitengrad',
|
|
91
|
+
lng: 'Längengrad',
|
|
92
|
+
latGMS: 'Breitengrad (DMS)',
|
|
93
|
+
lngGMS: 'Längengrad (DMS)',
|
|
94
|
+
gmsTraditional: 'Traditionelles DMS',
|
|
95
|
+
nauticalDM: 'Grad & Dez. Min. (Nautik)',
|
|
96
|
+
googleMapsFormat: 'Google Maps Format',
|
|
97
|
+
mapVisualization: 'Kartenvisualisierung',
|
|
98
|
+
mapHint: 'Klicken Sie auf die Karte, um Koordinaten direkt zu erfassen.',
|
|
95
99
|
copy: 'Kopieren',
|
|
96
100
|
copied: 'Kopiert!',
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
invalidFormat: 'Das Format wird nicht erkannt. Bitte überprüfen Sie Ihre Eingabe.',
|
|
103
|
-
},
|
|
101
|
+
recentHistory: 'Letzte Umrechnungen',
|
|
102
|
+
clear: 'Löschen',
|
|
103
|
+
noHistory: 'Keine letzten Umrechnungen.',
|
|
104
|
+
load: 'Laden',
|
|
105
|
+
delete: 'Löschen',
|
|
104
106
|
},
|
|
105
107
|
seo: [
|
|
106
108
|
{
|
|
@@ -196,10 +198,7 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
196
198
|
},
|
|
197
199
|
],
|
|
198
200
|
faq: faqItems,
|
|
199
|
-
bibliography
|
|
200
|
-
{ name: 'ArduPilot GPS Integration', url: 'https://ardupilot.org/copter/docs/common-positioning-landing-page.html' },
|
|
201
|
-
{ name: 'Dezimalgrad vs DMS (Wikipedia)', url: 'https://en.wikipedia.org/wiki/Decimal_degrees' },
|
|
202
|
-
],
|
|
201
|
+
bibliography,
|
|
203
202
|
howTo: [
|
|
204
203
|
{
|
|
205
204
|
name: 'Format identifizieren',
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { GpsCoordinatesConverterLocaleContent } from '../index';
|
|
2
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
3
4
|
|
|
4
5
|
const slug = 'gps-coordinates-converter';
|
|
5
6
|
const title = 'GPS Coordinates Converter from Decimal to DMS Online Free';
|
|
@@ -81,11 +82,7 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
81
82
|
slug,
|
|
82
83
|
title,
|
|
83
84
|
description,
|
|
84
|
-
faqTitle: 'Frequently Asked Questions',
|
|
85
|
-
bibliographyTitle: 'Bibliographic References',
|
|
86
85
|
ui: {
|
|
87
|
-
faqTitle: 'Frequently Asked Questions',
|
|
88
|
-
bibliographyTitle: 'Bibliographic References',
|
|
89
86
|
decimalDD: 'Decimal (DD)',
|
|
90
87
|
degreesGMS: 'Degrees (DMS)',
|
|
91
88
|
useLocation: 'Use my location',
|
|
@@ -96,6 +93,8 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
96
93
|
gmsTraditional: 'Traditional DMS',
|
|
97
94
|
nauticalDM: 'Degrees & Dec. Min. (Nautical)',
|
|
98
95
|
googleMapsFormat: 'Google Maps Format',
|
|
96
|
+
mapVisualization: 'Map Visualization',
|
|
97
|
+
mapHint: 'Click on the map to capture coordinates directly.',
|
|
99
98
|
copy: 'Copy',
|
|
100
99
|
copied: 'Copied!',
|
|
101
100
|
recentHistory: 'Recent History',
|
|
@@ -242,16 +241,7 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
242
241
|
},
|
|
243
242
|
],
|
|
244
243
|
faq: faqItems,
|
|
245
|
-
bibliography
|
|
246
|
-
{
|
|
247
|
-
name: 'WGS 84 (World Geodetic System 1984): The global technical standard for mapping and GPS.',
|
|
248
|
-
url: 'https://en.wikipedia.org/wiki/World_Geodetic_System',
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
name: 'USGS: Using GPS and Coordinate Systems.',
|
|
252
|
-
url: 'https://www.usgs.gov/faqs/how-do-i-find-latitude-and-longitude-a-location',
|
|
253
|
-
},
|
|
254
|
-
],
|
|
244
|
+
bibliography,
|
|
255
245
|
howTo: [],
|
|
256
246
|
schemas,
|
|
257
247
|
};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { GpsCoordinatesConverterLocaleContent } from '../index';
|
|
2
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
3
4
|
|
|
4
5
|
const slug = 'conversor-coordenadas-gps';
|
|
5
6
|
const title = 'Conversor Coordenadas GPS de Decimal a GMS Online Gratis';
|
|
@@ -81,11 +82,7 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
81
82
|
slug,
|
|
82
83
|
title,
|
|
83
84
|
description,
|
|
84
|
-
faqTitle: 'Preguntas Frecuentes',
|
|
85
|
-
bibliographyTitle: 'Referencias Bibliográficas',
|
|
86
85
|
ui: {
|
|
87
|
-
faqTitle: 'Preguntas Frecuentes',
|
|
88
|
-
bibliographyTitle: 'Referencias Bibliográficas',
|
|
89
86
|
decimalDD: 'Decimal (DD)',
|
|
90
87
|
degreesGMS: 'Grados (GMS)',
|
|
91
88
|
useLocation: 'Usar mi ubicación',
|
|
@@ -96,6 +93,8 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
96
93
|
gmsTraditional: 'GMS Tradicional',
|
|
97
94
|
nauticalDM: 'Grados y Min. Dec. (Náutica)',
|
|
98
95
|
googleMapsFormat: 'Formato Google Maps',
|
|
96
|
+
mapVisualization: 'Visualización en Mapas',
|
|
97
|
+
mapHint: 'Haz clic en el mapa para capturar coordenadas directamente.',
|
|
99
98
|
copy: 'Copiar',
|
|
100
99
|
copied: '¡Copiado!',
|
|
101
100
|
recentHistory: 'Historial Reciente',
|
|
@@ -242,16 +241,7 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
242
241
|
},
|
|
243
242
|
],
|
|
244
243
|
faq: faqItems,
|
|
245
|
-
bibliography
|
|
246
|
-
{
|
|
247
|
-
name: 'WGS 84 (World Geodetic System 1984): El estándar técnico global para cartografía y GPS.',
|
|
248
|
-
url: 'https://es.wikipedia.org/wiki/WGS84',
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
name: 'IGN (Instituto Geográfico Nacional): Guía sobre sistemas de coordenadas y proyecciones en España.',
|
|
252
|
-
url: 'https://www.ign.es/web/resources/cartografiaEnsenanza/conceptosCarto/descargas/Conceptos_Cartograficos_def.pdf',
|
|
253
|
-
},
|
|
254
|
-
],
|
|
244
|
+
bibliography,
|
|
255
245
|
howTo: [],
|
|
256
246
|
schemas,
|
|
257
247
|
};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { GpsCoordinatesConverterLocaleContent } from '../index';
|
|
2
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
3
4
|
|
|
4
5
|
const slug = 'conversisseur-coordonnees-gps';
|
|
5
6
|
const title = 'Convertisseur de Coordonnées GPS de Décimal vers DMS en Ligne Gratuit';
|
|
@@ -81,11 +82,7 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
81
82
|
slug,
|
|
82
83
|
title,
|
|
83
84
|
description,
|
|
84
|
-
faqTitle: 'Foire Aux Questions',
|
|
85
|
-
bibliographyTitle: 'Références Bibliographiques',
|
|
86
85
|
ui: {
|
|
87
|
-
faqTitle: 'Foire Aux Questions',
|
|
88
|
-
bibliographyTitle: 'Références Bibliographiques',
|
|
89
86
|
decimalDD: 'Décimal (DD)',
|
|
90
87
|
degreesGMS: 'Degrés (DMS)',
|
|
91
88
|
useLocation: 'Utiliser ma position',
|
|
@@ -96,6 +93,8 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
96
93
|
gmsTraditional: 'DMS Traditionnel',
|
|
97
94
|
nauticalDM: 'Degrés & Min. Déc. (Nautique)',
|
|
98
95
|
googleMapsFormat: 'Format Google Maps',
|
|
96
|
+
mapVisualization: 'Visualisation sur la Carte',
|
|
97
|
+
mapHint: 'Cliquez sur la carte pour capturer les coordonnées directement.',
|
|
99
98
|
copy: 'Copier',
|
|
100
99
|
copied: 'Copié !',
|
|
101
100
|
recentHistory: 'Historique Récent',
|
|
@@ -259,16 +258,7 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
259
258
|
answer: 'Oui, une fois la page chargée, toute la logique de conversion est locale (côté client). Seule la carte nécessite une connexion pour télécharger les nouvelles tuiles.',
|
|
260
259
|
},
|
|
261
260
|
],
|
|
262
|
-
bibliography
|
|
263
|
-
{
|
|
264
|
-
name: 'WGS 84 (World Geodetic System 1984) : La norme technique globale pour la cartographie et le GPS.',
|
|
265
|
-
url: 'https://fr.wikipedia.org/wiki/WGS_84',
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
name: 'IGN (Institut national de l\'information géographique et forestière) : Guides sur les coordonnées et projections.',
|
|
269
|
-
url: 'https://www.ign.fr',
|
|
270
|
-
},
|
|
271
|
-
],
|
|
261
|
+
bibliography,
|
|
272
262
|
howTo: [],
|
|
273
263
|
schemas,
|
|
274
264
|
};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { GpsCoordinatesConverterLocaleContent } from '../index';
|
|
2
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
3
4
|
|
|
4
5
|
const slug = 'konverter-koordinat-gps';
|
|
5
6
|
const title = 'Konverter Koordinat GPS untuk Waypoint ArduPilot dan INAV';
|
|
@@ -7,20 +8,20 @@ const description = 'Konversi koordinat GPS antara Derajat Desimal (DD), Derajat
|
|
|
7
8
|
|
|
8
9
|
const faqItems = [
|
|
9
10
|
{
|
|
10
|
-
question: '
|
|
11
|
-
answer: `DD (Decimal Degrees)
|
|
11
|
+
question: 'Apa perbedaan antara DD dan DMS?',
|
|
12
|
+
answer: `DD (Decimal Degrees) menggunakan satu angka dengan desimal (misalnya, 51.50). DMS (Degrees, Minutes, Seconds) membagi derajat menjadi pecahan seksagesimal (misalnya, 51° 30' 0").`,
|
|
12
13
|
},
|
|
13
14
|
{
|
|
14
|
-
question: '
|
|
15
|
-
answer: '
|
|
15
|
+
question: 'Mengapa koordinat negatif digunakan?',
|
|
16
|
+
answer: 'Dalam sistem Desimal (DD), garis lintang di sebelah selatan Khatulistiwa dan garis bujur di sebelah barat Greenwich ditunjukkan dengan tanda negatif untuk memudahkan perhitungan matematis.',
|
|
16
17
|
},
|
|
17
18
|
{
|
|
18
|
-
question: '
|
|
19
|
-
answer: '
|
|
19
|
+
question: 'Berapa banyak presisi yang hilang saat mengonversi?',
|
|
20
|
+
answer: 'Alat kami menggunakan titik mengambang presisi ganda. Dengan 6 desimal di DD, presisinya sekitar 11 sentimeter, yang sudah lebih dari cukup untuk drone dan navigasi sipil.',
|
|
20
21
|
},
|
|
21
22
|
{
|
|
22
|
-
question: '
|
|
23
|
-
answer: '
|
|
23
|
+
question: 'Apakah alat ini berfungsi secara offline?',
|
|
24
|
+
answer: 'Ya, setelah halaman dimuat, semua logika konversi bersifat lokal (sisi klien). Hanya peta yang memerlukan koneksi untuk mengunduh ubin baru.',
|
|
24
25
|
},
|
|
25
26
|
];
|
|
26
27
|
|
|
@@ -43,26 +44,26 @@ const schemas: GpsCoordinatesConverterLocaleContent['schemas'] = [
|
|
|
43
44
|
{
|
|
44
45
|
'@type': 'HowToStep',
|
|
45
46
|
position: 1,
|
|
46
|
-
name: '
|
|
47
|
-
text: '
|
|
47
|
+
name: 'Masukkan Koordinat',
|
|
48
|
+
text: 'Masukkan koordinat Anda dalam format Derajat Desimal (DD) oder Derajat, Menit, Detik (DMS).',
|
|
48
49
|
},
|
|
49
50
|
{
|
|
50
51
|
'@type': 'HowToStep',
|
|
51
52
|
position: 2,
|
|
52
|
-
name: '
|
|
53
|
-
text: '
|
|
53
|
+
name: 'Tinjau Konversi',
|
|
54
|
+
text: 'Alat ini secara instan menampilkan koordinat yang dikonversi dalam semua format yang didukung.',
|
|
54
55
|
},
|
|
55
56
|
{
|
|
56
57
|
'@type': 'HowToStep',
|
|
57
58
|
position: 3,
|
|
58
|
-
name: '
|
|
59
|
-
text: '
|
|
59
|
+
name: 'Verifikasi di Peta',
|
|
60
|
+
text: 'Periksa visualisasi peta untuk memastikan koordinat menunjuk ke lokasi yang benar.',
|
|
60
61
|
},
|
|
61
62
|
{
|
|
62
63
|
'@type': 'HowToStep',
|
|
63
64
|
position: 4,
|
|
64
|
-
name: '
|
|
65
|
-
text: '
|
|
65
|
+
name: 'Salin Hasil',
|
|
66
|
+
text: 'Salin koordinat yang dikonversi ke papan klip Anda untuk digunakan dalam sistem navigasi atau perencanaan misi.',
|
|
66
67
|
},
|
|
67
68
|
],
|
|
68
69
|
} as WithContext<HowTo>,
|
|
@@ -82,25 +83,26 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
82
83
|
slug,
|
|
83
84
|
title,
|
|
84
85
|
description,
|
|
85
|
-
faqTitle: 'Pertanyaan yang Sering Diajukan',
|
|
86
|
-
bibliographyTitle: 'Referensi Bibliografi',
|
|
87
86
|
ui: {
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
87
|
+
decimalDD: 'Desimal (DD)',
|
|
88
|
+
degreesGMS: 'Derajat (DMS)',
|
|
89
|
+
useLocation: 'Gunakan Lokasi Saya',
|
|
90
|
+
lat: 'Lintang',
|
|
91
|
+
lng: 'Bujur',
|
|
92
|
+
latGMS: 'Lintang (DMS)',
|
|
93
|
+
lngGMS: 'Bujur (DMS)',
|
|
94
|
+
gmsTraditional: 'DMS Tradisional',
|
|
95
|
+
nauticalDM: 'Derajat & Men. Des. (Nautika)',
|
|
96
|
+
googleMapsFormat: 'Format Google Maps',
|
|
97
|
+
mapVisualization: 'Visualisasi Peta',
|
|
98
|
+
mapHint: 'Klik pada peta untuk mengambil koordinat secara langsung.',
|
|
95
99
|
copy: 'Salin',
|
|
96
|
-
copied: '
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
invalidFormat: 'Format tidak dikenali. Silakan periksa masukan Anda.',
|
|
103
|
-
},
|
|
100
|
+
copied: 'Tersalin!',
|
|
101
|
+
recentHistory: 'Riwayat Terbaru',
|
|
102
|
+
clear: 'Hapus',
|
|
103
|
+
noHistory: 'Tidak ada konversi terbaru.',
|
|
104
|
+
load: 'Muat',
|
|
105
|
+
delete: 'Hapus',
|
|
104
106
|
},
|
|
105
107
|
seo: [
|
|
106
108
|
{
|
|
@@ -196,10 +198,7 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
196
198
|
},
|
|
197
199
|
],
|
|
198
200
|
faq: faqItems,
|
|
199
|
-
bibliography
|
|
200
|
-
{ name: 'Ardupilot Panduan Pemetaan Posisi Standart.', url: 'https://ardupilot.org/copter/docs/common-positioning-landing-page.html' },
|
|
201
|
-
{ name: 'Pemahaman Degrees decimal Dalam Catatan Wiki', url: 'https://en.wikipedia.org/wiki/Decimal_degrees' },
|
|
202
|
-
],
|
|
201
|
+
bibliography,
|
|
203
202
|
howTo: [
|
|
204
203
|
{
|
|
205
204
|
name: 'Meneliti Asal Usul Format.',
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { GpsCoordinatesConverterLocaleContent } from '../index';
|
|
2
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
3
4
|
|
|
4
5
|
const slug = 'convertitore-coordinate-gps';
|
|
5
6
|
const title = 'Convertitore di Coordinate GPS per Navigazione Waypoint';
|
|
@@ -7,20 +8,20 @@ const description = 'Converti le coordinate GPS tra Gradi Decimali (DD), Gradi M
|
|
|
7
8
|
|
|
8
9
|
const faqItems = [
|
|
9
10
|
{
|
|
10
|
-
question: '
|
|
11
|
-
answer: `DD (
|
|
11
|
+
question: 'Qual è la differenza tra DD e DMS?',
|
|
12
|
+
answer: `DD (Gradi Decimali) utilizza un singolo numero con decimali (es. 51.50). DMS (Gradi, Minuti, Secondi) divide il grado in frazioni sessagesimali (es. 51° 30' 0").`,
|
|
12
13
|
},
|
|
13
14
|
{
|
|
14
|
-
question: '
|
|
15
|
-
answer: '
|
|
15
|
+
question: 'Perché vengono utilizzate coordinate negative?',
|
|
16
|
+
answer: 'Nel sistema decimale (DD), le latitudini a sud dell\'Equatore e le longitudini a ovest di Greenwich sono indicate con un segno negativo per facilitare i calcoli matematici.',
|
|
16
17
|
},
|
|
17
18
|
{
|
|
18
|
-
question: '
|
|
19
|
-
answer: '
|
|
19
|
+
question: 'Quanta precisione perdo durante la conversione?',
|
|
20
|
+
answer: 'Il nostro strumento utilizza la virgola mobile a doppia precisione. Con 6 decimali in DD, la precisione è di circa 11 centimetri, il che è più che sufficiente per i droni e la navigazione civile.',
|
|
20
21
|
},
|
|
21
22
|
{
|
|
22
|
-
question: '
|
|
23
|
-
answer: '
|
|
23
|
+
question: 'Questo strumento funziona offline?',
|
|
24
|
+
answer: 'Sì, una volta caricata la pagina, tutta la logica di conversione è locale (lato client). Solo la mappa richiede una connessione per scaricare nuovi tasselli.',
|
|
24
25
|
},
|
|
25
26
|
];
|
|
26
27
|
|
|
@@ -43,26 +44,26 @@ const schemas: GpsCoordinatesConverterLocaleContent['schemas'] = [
|
|
|
43
44
|
{
|
|
44
45
|
'@type': 'HowToStep',
|
|
45
46
|
position: 1,
|
|
46
|
-
name: '
|
|
47
|
-
text: '
|
|
47
|
+
name: 'Inserimento Coordinate',
|
|
48
|
+
text: 'Inserisci le tue coordinate nel formato Gradi Decimali (DD) o Gradi, Minuti, Secondi (DMS).',
|
|
48
49
|
},
|
|
49
50
|
{
|
|
50
51
|
'@type': 'HowToStep',
|
|
51
52
|
position: 2,
|
|
52
|
-
name: '
|
|
53
|
-
text: '
|
|
53
|
+
name: 'Revisione Conversione',
|
|
54
|
+
text: 'Lo strumento visualizza istantaneamente le coordinate convertite in tutti i formati supportati.',
|
|
54
55
|
},
|
|
55
56
|
{
|
|
56
57
|
'@type': 'HowToStep',
|
|
57
58
|
position: 3,
|
|
58
|
-
name: '
|
|
59
|
-
text: '
|
|
59
|
+
name: 'Verifica su Mappa',
|
|
60
|
+
text: 'Controlla la visualizzazione sulla mappa per assicurarti che le coordinate indichino la posizione corretta.',
|
|
60
61
|
},
|
|
61
62
|
{
|
|
62
63
|
'@type': 'HowToStep',
|
|
63
64
|
position: 4,
|
|
64
|
-
name: '
|
|
65
|
-
text: '
|
|
65
|
+
name: 'Copia Risultato',
|
|
66
|
+
text: 'Copia le coordinate convertite negli appunti per utilizzarle nei sistemi di navigazione o nella pianificazione delle missioni.',
|
|
66
67
|
},
|
|
67
68
|
],
|
|
68
69
|
} as WithContext<HowTo>,
|
|
@@ -82,25 +83,26 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
82
83
|
slug,
|
|
83
84
|
title,
|
|
84
85
|
description,
|
|
85
|
-
faqTitle: 'Domande Frequenti',
|
|
86
|
-
bibliographyTitle: 'Manuali di Riferimento',
|
|
87
86
|
ui: {
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
87
|
+
decimalDD: 'Decimale (DD)',
|
|
88
|
+
degreesGMS: 'Gradi (DMS)',
|
|
89
|
+
useLocation: 'Usa la mia posizione',
|
|
90
|
+
lat: 'Latitudine',
|
|
91
|
+
lng: 'Longitudine',
|
|
92
|
+
latGMS: 'Latitudine (DMS)',
|
|
93
|
+
lngGMS: 'Longitudine (DMS)',
|
|
94
|
+
gmsTraditional: 'DMS Tradizionale',
|
|
95
|
+
nauticalDM: 'Gradi & Min. Dec. (Nautico)',
|
|
96
|
+
googleMapsFormat: 'Formato Google Maps',
|
|
97
|
+
mapVisualization: 'Visualizzazione su Mappa',
|
|
98
|
+
mapHint: 'Clicca sulla mappa per catturare le coordinate direttamente.',
|
|
95
99
|
copy: 'Copia',
|
|
96
100
|
copied: 'Copiato!',
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
invalidFormat: 'Formato non riconosciuto. Per favore controlla l\'inserimento.',
|
|
103
|
-
},
|
|
101
|
+
recentHistory: 'Cronologia Recente',
|
|
102
|
+
clear: 'Cancella',
|
|
103
|
+
noHistory: 'Nessuna conversione recente.',
|
|
104
|
+
load: 'Carica',
|
|
105
|
+
delete: 'Elimina',
|
|
104
106
|
},
|
|
105
107
|
seo: [
|
|
106
108
|
{
|
|
@@ -196,10 +198,7 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
196
198
|
},
|
|
197
199
|
],
|
|
198
200
|
faq: faqItems,
|
|
199
|
-
bibliography
|
|
200
|
-
{ name: 'Ardupilot Documentazioni ed integrazione in Volo Autonomo .', url: 'https://ardupilot.org/copter/docs/common-positioning-landing-page.html' },
|
|
201
|
-
{ name: 'Spazio, Geografia in wikipedia gradi e forme decimale', url: 'https://en.wikipedia.org/wiki/Decimal_degrees' },
|
|
202
|
-
],
|
|
201
|
+
bibliography,
|
|
203
202
|
howTo: [
|
|
204
203
|
{
|
|
205
204
|
name: 'Identificazione della Lingua / Formato Sorgente',
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { GpsCoordinatesConverterLocaleContent } from '../index';
|
|
2
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
3
4
|
|
|
4
5
|
const slug = 'gps-coordinates-converter';
|
|
5
6
|
const title = 'ArduPilotおよびINAVウェイポイント用GPS座標変換機';
|
|
@@ -82,25 +83,26 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
82
83
|
slug,
|
|
83
84
|
title,
|
|
84
85
|
description,
|
|
85
|
-
faqTitle: 'よくある質問',
|
|
86
|
-
bibliographyTitle: '参考文献',
|
|
87
86
|
ui: {
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
87
|
+
decimalDD: '10進法 (DD)',
|
|
88
|
+
degreesGMS: '度分秒 (DMS)',
|
|
89
|
+
useLocation: '現在地を使用',
|
|
90
|
+
lat: '緯度',
|
|
91
|
+
lng: '経度',
|
|
92
|
+
latGMS: '緯度 (DMS)',
|
|
93
|
+
lngGMS: '経度 (DMS)',
|
|
94
|
+
gmsTraditional: '伝統的 DMS',
|
|
95
|
+
nauticalDM: '度 & 分 (航海用)',
|
|
96
|
+
googleMapsFormat: 'Googleマップ形式',
|
|
97
|
+
mapVisualization: 'マップ表示',
|
|
98
|
+
mapHint: 'マップをクリックして座標を直接取得します。',
|
|
95
99
|
copy: 'コピー',
|
|
96
100
|
copied: 'コピーしました!',
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
invalidFormat: 'フォーマットが認識されません。入力内容を確認してください。',
|
|
103
|
-
},
|
|
101
|
+
recentHistory: '最近の履歴',
|
|
102
|
+
clear: '消去',
|
|
103
|
+
noHistory: '履歴はありません。',
|
|
104
|
+
load: '読み込む',
|
|
105
|
+
delete: '削除',
|
|
104
106
|
},
|
|
105
107
|
seo: [
|
|
106
108
|
{
|
|
@@ -196,10 +198,7 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
196
198
|
},
|
|
197
199
|
],
|
|
198
200
|
faq: faqItems,
|
|
199
|
-
bibliography
|
|
200
|
-
{ name: 'ArduPilot GPS Integration', url: 'https://ardupilot.org/copter/docs/common-positioning-landing-page.html' },
|
|
201
|
-
{ name: 'Decimal degrees vs DMS (Wikipedia)', url: 'https://en.wikipedia.org/wiki/Decimal_degrees' },
|
|
202
|
-
],
|
|
201
|
+
bibliography,
|
|
203
202
|
howTo: [
|
|
204
203
|
{
|
|
205
204
|
name: 'フォーマットの確認',
|