@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.
Files changed (93) hide show
  1. package/package.json +1 -1
  2. package/src/category/index.ts +2 -1
  3. package/src/entries.ts +4 -1
  4. package/src/index.ts +1 -0
  5. package/src/pages/[locale]/[slug].astro +30 -14
  6. package/src/tests/locale_completeness.test.ts +4 -22
  7. package/src/tests/shared-test-helpers.ts +56 -0
  8. package/src/tests/tool_exports.test.ts +34 -0
  9. package/src/tests/tool_validation.test.ts +2 -2
  10. package/src/tool/antenna-length-calculator/bibliography.astro +3 -11
  11. package/src/tool/antenna-length-calculator/bibliography.ts +6 -0
  12. package/src/tool/antenna-length-calculator/i18n/de.ts +2 -8
  13. package/src/tool/antenna-length-calculator/i18n/en.ts +2 -8
  14. package/src/tool/antenna-length-calculator/i18n/es.ts +2 -8
  15. package/src/tool/antenna-length-calculator/i18n/fr.ts +2 -8
  16. package/src/tool/antenna-length-calculator/i18n/id.ts +2 -8
  17. package/src/tool/antenna-length-calculator/i18n/it.ts +2 -8
  18. package/src/tool/antenna-length-calculator/i18n/ja.ts +2 -8
  19. package/src/tool/antenna-length-calculator/i18n/ko.ts +2 -8
  20. package/src/tool/antenna-length-calculator/i18n/nl.ts +2 -8
  21. package/src/tool/antenna-length-calculator/i18n/pl.ts +2 -8
  22. package/src/tool/antenna-length-calculator/i18n/pt.ts +2 -8
  23. package/src/tool/antenna-length-calculator/i18n/ru.ts +2 -8
  24. package/src/tool/antenna-length-calculator/i18n/sv.ts +2 -8
  25. package/src/tool/antenna-length-calculator/i18n/tr.ts +2 -8
  26. package/src/tool/antenna-length-calculator/i18n/zh.ts +2 -8
  27. package/src/tool/antenna-length-calculator/seo.astro +2 -26
  28. package/src/tool/drone-flight-time/bibliography.astro +3 -11
  29. package/src/tool/drone-flight-time/bibliography.ts +7 -0
  30. package/src/tool/drone-flight-time/i18n/de.ts +2 -9
  31. package/src/tool/drone-flight-time/i18n/en.ts +2 -9
  32. package/src/tool/drone-flight-time/i18n/es.ts +2 -9
  33. package/src/tool/drone-flight-time/i18n/fr.ts +2 -9
  34. package/src/tool/drone-flight-time/i18n/id.ts +2 -9
  35. package/src/tool/drone-flight-time/i18n/it.ts +2 -9
  36. package/src/tool/drone-flight-time/i18n/ja.ts +2 -9
  37. package/src/tool/drone-flight-time/i18n/ko.ts +2 -9
  38. package/src/tool/drone-flight-time/i18n/nl.ts +2 -9
  39. package/src/tool/drone-flight-time/i18n/pl.ts +2 -9
  40. package/src/tool/drone-flight-time/i18n/pt.ts +2 -9
  41. package/src/tool/drone-flight-time/i18n/ru.ts +2 -9
  42. package/src/tool/drone-flight-time/i18n/sv.ts +2 -9
  43. package/src/tool/drone-flight-time/i18n/tr.ts +2 -9
  44. package/src/tool/drone-flight-time/i18n/zh.ts +2 -9
  45. package/src/tool/drone-flight-time/seo.astro +2 -18
  46. package/src/tool/drone-power-analyzer/bibliography.astro +6 -0
  47. package/src/tool/drone-power-analyzer/bibliography.ts +7 -0
  48. package/src/tool/drone-power-analyzer/component.astro +210 -0
  49. package/src/tool/drone-power-analyzer/components/FlightProfile.astro +37 -0
  50. package/src/tool/drone-power-analyzer/components/MotorConfig.astro +46 -0
  51. package/src/tool/drone-power-analyzer/components/PowerGauge.astro +48 -0
  52. package/src/tool/drone-power-analyzer/components/WeightConfig.astro +49 -0
  53. package/src/tool/drone-power-analyzer/drone-power-analyzer.css +535 -0
  54. package/src/tool/drone-power-analyzer/entry.ts +29 -0
  55. package/src/tool/drone-power-analyzer/i18n/de.ts +203 -0
  56. package/src/tool/drone-power-analyzer/i18n/en.ts +203 -0
  57. package/src/tool/drone-power-analyzer/i18n/es.ts +203 -0
  58. package/src/tool/drone-power-analyzer/i18n/fr.ts +203 -0
  59. package/src/tool/drone-power-analyzer/i18n/id.ts +203 -0
  60. package/src/tool/drone-power-analyzer/i18n/it.ts +203 -0
  61. package/src/tool/drone-power-analyzer/i18n/ja.ts +203 -0
  62. package/src/tool/drone-power-analyzer/i18n/ko.ts +203 -0
  63. package/src/tool/drone-power-analyzer/i18n/nl.ts +203 -0
  64. package/src/tool/drone-power-analyzer/i18n/pl.ts +203 -0
  65. package/src/tool/drone-power-analyzer/i18n/pt.ts +203 -0
  66. package/src/tool/drone-power-analyzer/i18n/ru.ts +203 -0
  67. package/src/tool/drone-power-analyzer/i18n/sv.ts +203 -0
  68. package/src/tool/drone-power-analyzer/i18n/tr.ts +203 -0
  69. package/src/tool/drone-power-analyzer/i18n/zh.ts +203 -0
  70. package/src/tool/drone-power-analyzer/index.ts +8 -0
  71. package/src/tool/drone-power-analyzer/seo.astro +15 -0
  72. package/src/tool/gps-coordinates-converter/bibliography.astro +3 -11
  73. package/src/tool/gps-coordinates-converter/bibliography.ts +12 -0
  74. package/src/tool/gps-coordinates-converter/components/GpsMap.astro +3 -2
  75. package/src/tool/gps-coordinates-converter/gps-coordinates-converter.css +196 -188
  76. package/src/tool/gps-coordinates-converter/i18n/de.ts +35 -36
  77. package/src/tool/gps-coordinates-converter/i18n/en.ts +4 -14
  78. package/src/tool/gps-coordinates-converter/i18n/es.ts +4 -14
  79. package/src/tool/gps-coordinates-converter/i18n/fr.ts +4 -14
  80. package/src/tool/gps-coordinates-converter/i18n/id.ts +36 -37
  81. package/src/tool/gps-coordinates-converter/i18n/it.ts +35 -36
  82. package/src/tool/gps-coordinates-converter/i18n/ja.ts +19 -20
  83. package/src/tool/gps-coordinates-converter/i18n/ko.ts +20 -21
  84. package/src/tool/gps-coordinates-converter/i18n/nl.ts +33 -36
  85. package/src/tool/gps-coordinates-converter/i18n/pl.ts +19 -20
  86. package/src/tool/gps-coordinates-converter/i18n/pt.ts +19 -20
  87. package/src/tool/gps-coordinates-converter/i18n/ru.ts +19 -20
  88. package/src/tool/gps-coordinates-converter/i18n/sv.ts +19 -20
  89. package/src/tool/gps-coordinates-converter/i18n/tr.ts +19 -20
  90. package/src/tool/gps-coordinates-converter/i18n/zh.ts +20 -21
  91. package/src/tool/gps-coordinates-converter/seo.astro +2 -26
  92. package/src/tools.ts +3 -0
  93. 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: 'What is the difference between DD and DMS?',
11
- answer: `DD (Decimal Degrees) uses a single number with decimals (e.g., 51.50). DMS (Degrees, Minutes, Seconds) divides the degree into sexagesimal fractions (e.g., 51° 30' 0").`,
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: 'Why are negative coordinates used?',
15
- answer: 'In the Decimal system (DD), latitudes south of the Equator and longitudes west of Greenwich are indicated with a negative sign to facilitate mathematical calculations.',
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: 'How much precision do I lose when converting?',
19
- answer: 'Our tool uses double-precision floating point. With 6 decimals in DD, the precision is about 11 centimeters, which is more than enough for drones and civil navigation.',
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: 'Does this tool work offline?',
23
- answer: 'Yes, once the page is loaded, all conversion logic is local (client-side). Only the map requires a connection to download new tiles.',
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: 'Input Coordinates',
47
- text: 'Enter your coordinates in either Decimal Degrees (DD) or Degrees, Minutes, Seconds (DMS) format.',
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: 'Review Conversion',
53
- text: 'The tool instantly displays the converted coordinates in all supported formats.',
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: 'Verify on Map',
59
- text: 'Check the map visualization to ensure the coordinates point to the correct location.',
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: 'Copy Result',
65
- text: 'Copy the converted coordinates to your clipboard for use in navigation systems or mission planning.',
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
- faqTitle: 'Häufig gestellte Fragen',
89
- bibliographyTitle: 'Referenzhandbücher',
90
- latitude: 'Breitengrad',
91
- longitude: 'Längengrad',
92
- decimalDegrees: 'Dezimalgrad (DD)',
93
- degreesMinutesSeconds: 'Grad, Minuten, Sekunden (DMS)',
94
- gpsHardware: 'GPS Hardware Format (Roh)',
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
- invalidCoordinate: 'Ungültige Koordinate',
98
- pasteHardwareMapFormat: 'Hardware-Rohdaten einfügen (z.B. 404306300, -739981800)',
99
- validation: {
100
- latRange: 'Der Breitengrad muss zwischen -90 und 90 liegen.',
101
- lonRange: 'Der Längengrad muss zwischen -180 und 180 liegen.',
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: 'What is the difference between DD and DMS?',
11
- answer: `DD (Decimal Degrees) uses a single number with decimals (e.g., 51.50). DMS (Degrees, Minutes, Seconds) divides the degree into sexagesimal fractions (e.g., 51° 30' 0").`,
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: 'Why are negative coordinates used?',
15
- answer: 'In the Decimal system (DD), latitudes south of the Equator and longitudes west of Greenwich are indicated with a negative sign to facilitate mathematical calculations.',
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: 'How much precision do I lose when converting?',
19
- answer: 'Our tool uses double-precision floating point. With 6 decimals in DD, the precision is about 11 centimeters, which is more than enough for drones and civil navigation.',
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: 'Does this tool work offline?',
23
- answer: 'Yes, once the page is loaded, all conversion logic is local (client-side). Only the map requires a connection to download new tiles.',
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: 'Input Coordinates',
47
- text: 'Enter your coordinates in either Decimal Degrees (DD) or Degrees, Minutes, Seconds (DMS) format.',
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: 'Review Conversion',
53
- text: 'The tool instantly displays the converted coordinates in all supported formats.',
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: 'Verify on Map',
59
- text: 'Check the map visualization to ensure the coordinates point to the correct location.',
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: 'Copy Result',
65
- text: 'Copy the converted coordinates to your clipboard for use in navigation systems or mission planning.',
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
- faqTitle: 'Pertanyaan yang Sering Diajukan',
89
- bibliographyTitle: 'Referensi Bibliografi',
90
- latitude: 'Garis Lintang',
91
- longitude: 'Garis Bujur',
92
- decimalDegrees: 'Derajat Desimal (DD)',
93
- degreesMinutesSeconds: 'Derajat, Menit, Detik (DMS)',
94
- gpsHardware: 'Format Perangkat Keras GPS (Raw)',
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: 'Disalin!',
97
- invalidCoordinate: 'Koordinat Tidak Valid',
98
- pasteHardwareMapFormat: 'Tempel data perangkat keras (contoh: 404306300, -739981800)',
99
- validation: {
100
- latRange: 'Garis lintang harus berada di antara -90 dan 90.',
101
- lonRange: 'Garis bujur harus berada di antara -180 dan 180.',
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: 'What is the difference between DD and DMS?',
11
- answer: `DD (Decimal Degrees) uses a single number with decimals (e.g., 51.50). DMS (Degrees, Minutes, Seconds) divides the degree into sexagesimal fractions (e.g., 51° 30' 0").`,
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: 'Why are negative coordinates used?',
15
- answer: 'In the Decimal system (DD), latitudes south of the Equator and longitudes west of Greenwich are indicated with a negative sign to facilitate mathematical calculations.',
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: 'How much precision do I lose when converting?',
19
- answer: 'Our tool uses double-precision floating point. With 6 decimals in DD, the precision is about 11 centimeters, which is more than enough for drones and civil navigation.',
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: 'Does this tool work offline?',
23
- answer: 'Yes, once the page is loaded, all conversion logic is local (client-side). Only the map requires a connection to download new tiles.',
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: 'Input Coordinates',
47
- text: 'Enter your coordinates in either Decimal Degrees (DD) or Degrees, Minutes, Seconds (DMS) format.',
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: 'Review Conversion',
53
- text: 'The tool instantly displays the converted coordinates in all supported formats.',
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: 'Verify on Map',
59
- text: 'Check the map visualization to ensure the coordinates point to the correct location.',
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: 'Copy Result',
65
- text: 'Copy the converted coordinates to your clipboard for use in navigation systems or mission planning.',
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
- faqTitle: 'Domande Frequenti',
89
- bibliographyTitle: 'Manuali di Riferimento',
90
- latitude: 'Latitudine',
91
- longitude: 'Longitudine',
92
- decimalDegrees: 'Gradi Decimali (DD)',
93
- degreesMinutesSeconds: 'Gradi, Minuti, Secondi (DMS)',
94
- gpsHardware: 'Formato Hardware GPS (Raw)',
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
- invalidCoordinate: 'Coordinata non valida',
98
- pasteHardwareMapFormat: 'Incolla formato Raw (es. 404306300, -739981800)',
99
- validation: {
100
- latRange: 'La latitudine deve essere compresa tra -90 e 90.',
101
- lonRange: 'La longitudine deve essere compresa tra -180 e 180.',
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
- faqTitle: 'よくある質問',
89
- bibliographyTitle: '参考文献',
90
- latitude: '緯度',
91
- longitude: '経度',
92
- decimalDegrees: '10進度数法 (DD)',
93
- degreesMinutesSeconds: '度・分・秒 (DMS)',
94
- gpsHardware: 'GPSハードウェアフォーマット (Raw)',
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
- invalidCoordinate: '無効な座標です',
98
- pasteHardwareMapFormat: '生データを貼り付け (例: 404306300, -739981800)',
99
- validation: {
100
- latRange: '緯度は -90 から 90 の間である必要があります。',
101
- lonRange: '経度は -180 から 180 の間である必要があります。',
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: 'フォーマットの確認',