@jjlmoya/utils-drones 1.15.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 +197 -119
  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 = '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: 'フォーマットの確認',
@@ -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: '십진 도수 (DD)',
93
- degreesMinutesSeconds: '도, 분, 초 (DMS)',
94
- gpsHardware: 'GPS 하드웨어 형식 (Raw)',
87
+ decimalDD: '십진수 (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
- copied: '복사되었습니다!',
97
- invalidCoordinate: '잘못된 좌표',
98
- pasteHardwareMapFormat: '원본 데이터 붙여넣기 (예: 404306300, -739981800)',
99
- validation: {
100
- latRange: '위도는 -90에서 90 사이여야 합니다.',
101
- lonRange: '경도는 -180에서 180 사이여야 합니다.',
102
- invalidFormat: '형식을 인식할 수 없습니다. 입력을 확인해 주세요.',
103
- },
100
+ copied: '복사됨!',
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 연동 기초', url: 'https://ardupilot.org/copter/docs/common-positioning-landing-page.html' },
201
- { name: '십진 도 대 DMS (위키백과)', url: 'https://en.wikipedia.org/wiki/Decimal_degrees' },
202
- ],
201
+ bibliography,
203
202
  howTo: [
204
203
  {
205
204
  name: '형식 확인',
@@ -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-coordinaten-converter';
5
6
  const title = 'GPS Coordinaten Converter voor ArduPilot en INAV Waypoints';
@@ -7,20 +8,20 @@ const description = 'Converteer GPS-coördinaten tussen Decimale Graden (DD), Gr
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: 'Wat is het verschil tussen DD en DMS?',
12
+ answer: `DD (Decimale Graden) gebruikt één getal met decimalen (bijv. 51.50). DMS (Graden, Minuten, Seconden) verdeelt de graad in sexagesimale fracties (bijv. 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: 'Waarom worden negatieve coördinaten gebruikt?',
16
+ answer: 'In het decimale systeem (DD) worden breedtegraden ten zuiden van de evenaar en lengtegraden ten westen van Greenwich aangegeven met een minteken om wiskundige berekeningen te vergemakkelijken.',
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: 'Hoeveel precisie verlies ik bij het converteren?',
20
+ answer: 'Onze tool gebruikt dubbele precisie drijvende komma. Met 6 decimalen in DD is de precisie ongeveer 11 centimeter, wat meer dan genoeg is voor drones en civiele navigatie.',
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: 'Werkt deze tool offline?',
24
+ answer: 'Ja, zodra de pagina is geladen, is alle conversielogica lokaal (client-side). Alleen de kaart heeft een verbinding nodig om nieuwe tegels te downloaden.',
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: 'Voer coördinaten in',
48
+ text: 'Voer uw coördinaten in in het formaat Decimale Graden (DD) of Graden, Minuten, Seconden (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: 'Controleer conversie',
54
+ text: 'De tool toont direct de geconverteerde coördinaten in alle ondersteunde formaten.',
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: 'Verifieer op kaart',
60
+ text: 'Controleer de kaartvisualisatie om er zeker van te zijn dat de coördinaten naar de juiste locatie wijzen.',
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: 'Kopieer resultaat',
66
+ text: 'Kopieer de geconverteerde coördinaten naar uw klembord voor gebruik in navigatiesystemen of missieplanning.',
66
67
  },
67
68
  ],
68
69
  } as WithContext<HowTo>,
@@ -82,25 +83,24 @@ export const content: GpsCoordinatesConverterLocaleContent = {
82
83
  slug,
83
84
  title,
84
85
  description,
85
- faqTitle: 'Veelgestelde Vragen',
86
- bibliographyTitle: 'Referentiehandleidingen',
87
86
  ui: {
88
- faqTitle: 'Veelgestelde Vragen',
89
- bibliographyTitle: 'Referentiehandleidingen',
90
- latitude: 'Breedtegraad',
91
- longitude: 'Lengtegraad',
92
- decimalDegrees: 'Decimale Graden (DD)',
93
- degreesMinutesSeconds: 'Graden, Minuten, Seconden (DMS)',
94
- gpsHardware: 'GPS-hardwareformaat (Raw)',
87
+ decimalDD: 'Decimaal (DD)',
88
+ degreesGMS: 'Graden (DMS)',
89
+ useLocation: 'Gebruik mijn locatie',
90
+ lat: 'Breedtegraad',
91
+ lng: 'Lengtegraad',
92
+ latGMS: 'Breedtegraad (DMS)',
93
+ lngGMS: 'Lengtegraad (DMS)',
94
+ gmsTraditional: 'Traditionele DMS',
95
+ nauticalDM: 'Graden & Dec. Min. (Nautisch)',
96
+ googleMapsFormat: 'Google Maps Formaat',
95
97
  copy: 'Kopiëren',
96
98
  copied: 'Gekopieerd!',
97
- invalidCoordinate: 'Ongeldige coördinaat',
98
- pasteHardwareMapFormat: 'Plak hardwareformaat (bijv. 404306300, -739981800)',
99
- validation: {
100
- latRange: 'Breedtegraad moet tussen -90 en 90 liggen.',
101
- lonRange: 'Lengtegraad moet tussen -180 en 180 liggen.',
102
- invalidFormat: 'Formaat niet herkend. Controleer uw invoer.',
103
- },
99
+ recentHistory: 'Recente Geschiedenis',
100
+ clear: 'Wissen',
101
+ noHistory: 'Geen recente conversies.',
102
+ load: 'Laden',
103
+ delete: 'Verwijderen',
104
104
  },
105
105
  seo: [
106
106
  {
@@ -196,10 +196,7 @@ export const content: GpsCoordinatesConverterLocaleContent = {
196
196
  },
197
197
  ],
198
198
  faq: faqItems,
199
- bibliography: [
200
- { name: 'Ardupilot Documentatie en Integratie Informatie.', url: 'https://ardupilot.org/copter/docs/common-positioning-landing-page.html' },
201
- { name: 'Naslag over Decimalen en Graden (Wikipedia).', url: 'https://en.wikipedia.org/wiki/Decimal_degrees' },
202
- ],
199
+ bibliography,
203
200
  howTo: [
204
201
  {
205
202
  name: 'Onderken Formaat',