@jjlmoya/utils-drones 1.5.0 → 1.7.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 (74) hide show
  1. package/package.json +64 -63
  2. package/src/category/i18n/de.ts +106 -0
  3. package/src/category/i18n/id.ts +106 -0
  4. package/src/category/i18n/it.ts +106 -0
  5. package/src/category/i18n/ja.ts +106 -0
  6. package/src/category/i18n/ko.ts +106 -0
  7. package/src/category/i18n/nl.ts +106 -0
  8. package/src/category/i18n/pl.ts +106 -0
  9. package/src/category/i18n/pt.ts +106 -0
  10. package/src/category/i18n/ru.ts +106 -0
  11. package/src/category/i18n/sv.ts +106 -0
  12. package/src/category/i18n/tr.ts +106 -0
  13. package/src/category/i18n/zh.ts +106 -0
  14. package/src/category/index.ts +12 -0
  15. package/src/components/SecurityWarning.astro +140 -0
  16. package/src/tests/faq_count.test.ts +1 -1
  17. package/src/tests/i18n_coverage.test.ts +36 -0
  18. package/src/tests/locale_completeness.test.ts +2 -2
  19. package/src/tests/schemas_fulfillment.test.ts +23 -0
  20. package/src/tests/slug_uniqueness.test.ts +81 -0
  21. package/src/tests/title_quality.test.ts +55 -0
  22. package/src/tool/antenna-length-calculator/component.astro +70 -13
  23. package/src/tool/antenna-length-calculator/i18n/de.ts +276 -0
  24. package/src/tool/antenna-length-calculator/i18n/en.ts +76 -38
  25. package/src/tool/antenna-length-calculator/i18n/es.ts +76 -38
  26. package/src/tool/antenna-length-calculator/i18n/fr.ts +76 -38
  27. package/src/tool/antenna-length-calculator/i18n/id.ts +242 -0
  28. package/src/tool/antenna-length-calculator/i18n/it.ts +276 -0
  29. package/src/tool/antenna-length-calculator/i18n/ja.ts +276 -0
  30. package/src/tool/antenna-length-calculator/i18n/ko.ts +276 -0
  31. package/src/tool/antenna-length-calculator/i18n/nl.ts +276 -0
  32. package/src/tool/antenna-length-calculator/i18n/pl.ts +276 -0
  33. package/src/tool/antenna-length-calculator/i18n/pt.ts +276 -0
  34. package/src/tool/antenna-length-calculator/i18n/ru.ts +276 -0
  35. package/src/tool/antenna-length-calculator/i18n/sv.ts +276 -0
  36. package/src/tool/antenna-length-calculator/i18n/tr.ts +276 -0
  37. package/src/tool/antenna-length-calculator/i18n/zh.ts +276 -0
  38. package/src/tool/antenna-length-calculator/index.ts +12 -0
  39. package/src/tool/drone-flight-time/component.astro +320 -319
  40. package/src/tool/drone-flight-time/components/FlightDashboard.astro +6 -0
  41. package/src/tool/drone-flight-time/i18n/de.ts +238 -0
  42. package/src/tool/drone-flight-time/i18n/en.ts +76 -38
  43. package/src/tool/drone-flight-time/i18n/es.ts +76 -38
  44. package/src/tool/drone-flight-time/i18n/fr.ts +76 -38
  45. package/src/tool/drone-flight-time/i18n/id.ts +238 -0
  46. package/src/tool/drone-flight-time/i18n/it.ts +238 -0
  47. package/src/tool/drone-flight-time/i18n/ja.ts +239 -0
  48. package/src/tool/drone-flight-time/i18n/ko.ts +239 -0
  49. package/src/tool/drone-flight-time/i18n/nl.ts +239 -0
  50. package/src/tool/drone-flight-time/i18n/pl.ts +239 -0
  51. package/src/tool/drone-flight-time/i18n/pt.ts +239 -0
  52. package/src/tool/drone-flight-time/i18n/ru.ts +239 -0
  53. package/src/tool/drone-flight-time/i18n/sv.ts +239 -0
  54. package/src/tool/drone-flight-time/i18n/tr.ts +239 -0
  55. package/src/tool/drone-flight-time/i18n/zh.ts +239 -0
  56. package/src/tool/drone-flight-time/index.ts +12 -0
  57. package/src/tool/gps-coordinates-converter/component.astro +473 -549
  58. package/src/tool/gps-coordinates-converter/components/GpsHistory.astro +6 -1
  59. package/src/tool/gps-coordinates-converter/i18n/de.ts +222 -0
  60. package/src/tool/gps-coordinates-converter/i18n/en.ts +76 -20
  61. package/src/tool/gps-coordinates-converter/i18n/es.ts +76 -20
  62. package/src/tool/gps-coordinates-converter/i18n/fr.ts +75 -2
  63. package/src/tool/gps-coordinates-converter/i18n/id.ts +222 -0
  64. package/src/tool/gps-coordinates-converter/i18n/it.ts +222 -0
  65. package/src/tool/gps-coordinates-converter/i18n/ja.ts +222 -0
  66. package/src/tool/gps-coordinates-converter/i18n/ko.ts +222 -0
  67. package/src/tool/gps-coordinates-converter/i18n/nl.ts +222 -0
  68. package/src/tool/gps-coordinates-converter/i18n/pl.ts +222 -0
  69. package/src/tool/gps-coordinates-converter/i18n/pt.ts +222 -0
  70. package/src/tool/gps-coordinates-converter/i18n/ru.ts +222 -0
  71. package/src/tool/gps-coordinates-converter/i18n/sv.ts +222 -0
  72. package/src/tool/gps-coordinates-converter/i18n/tr.ts +222 -0
  73. package/src/tool/gps-coordinates-converter/i18n/zh.ts +222 -0
  74. package/src/tool/gps-coordinates-converter/index.ts +12 -0
@@ -0,0 +1,222 @@
1
+ import type { GpsCoordinatesConverterLocaleContent } from '../index';
2
+ import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
3
+
4
+ const slug = 'konverter-koordinat-gps';
5
+ const title = 'Konverter Koordinat GPS untuk Waypoint ArduPilot dan INAV';
6
+ const description = 'Konversi koordinat GPS antara Derajat Desimal (DD), Derajat Menit Detik (DMS), dan format perangkat keras GPS. Sangat penting untuk waypoint ArduPilot dan INAV.';
7
+
8
+ const faqItems = [
9
+ {
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").`,
12
+ },
13
+ {
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.',
16
+ },
17
+ {
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.',
20
+ },
21
+ {
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.',
24
+ },
25
+ ];
26
+
27
+ const schemas: GpsCoordinatesConverterLocaleContent['schemas'] = [
28
+ {
29
+ '@context': 'https://schema.org',
30
+ '@type': 'FAQPage',
31
+ mainEntity: faqItems.map((item) => ({
32
+ '@type': 'Question',
33
+ name: item.question,
34
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
35
+ })),
36
+ } as WithContext<FAQPage>,
37
+ {
38
+ '@context': 'https://schema.org',
39
+ '@type': 'HowTo',
40
+ name: title,
41
+ description: description,
42
+ step: [
43
+ {
44
+ '@type': 'HowToStep',
45
+ position: 1,
46
+ name: 'Input Coordinates',
47
+ text: 'Enter your coordinates in either Decimal Degrees (DD) or Degrees, Minutes, Seconds (DMS) format.',
48
+ },
49
+ {
50
+ '@type': 'HowToStep',
51
+ position: 2,
52
+ name: 'Review Conversion',
53
+ text: 'The tool instantly displays the converted coordinates in all supported formats.',
54
+ },
55
+ {
56
+ '@type': 'HowToStep',
57
+ position: 3,
58
+ name: 'Verify on Map',
59
+ text: 'Check the map visualization to ensure the coordinates point to the correct location.',
60
+ },
61
+ {
62
+ '@type': 'HowToStep',
63
+ position: 4,
64
+ name: 'Copy Result',
65
+ text: 'Copy the converted coordinates to your clipboard for use in navigation systems or mission planning.',
66
+ },
67
+ ],
68
+ } as WithContext<HowTo>,
69
+ {
70
+ '@context': 'https://schema.org',
71
+ '@type': 'SoftwareApplication',
72
+ name: title,
73
+ description: description,
74
+ applicationCategory: 'OtherApplication',
75
+ operatingSystem: 'Web',
76
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
77
+ } as WithContext<SoftwareApplication>,
78
+ ];
79
+
80
+
81
+ export const content: GpsCoordinatesConverterLocaleContent = {
82
+ slug,
83
+ title,
84
+ description,
85
+ faqTitle: 'Pertanyaan yang Sering Diajukan',
86
+ bibliographyTitle: 'Referensi Bibliografi',
87
+ 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)',
95
+ 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
+ },
104
+ },
105
+ seo: [
106
+ {
107
+ type: 'title',
108
+ text: 'Memahami Koordinat GPS: Alat yang Sangat Diperlukan untuk Navigasi Drone',
109
+ level: 2,
110
+ },
111
+ {
112
+ type: 'paragraph',
113
+ html: 'Ketika berbicara tentang penerbangan drone otonom, pemetaan udara, atau pemulihan peralatan yang hilang, presisi dan keseragaman adalah kuncinya. Koordinat GPS membentuk tulang punggung navigasi tersebut, tetapi berbagai sistem (seperti Betaflight, INAV, ArduPilot, dan Google Maps) menggunakan format yang berbeda-beda. <strong>Konverter Koordinat GPS</strong> kami menjembatani kesenjangan tersebut, memastikan bahwa titik jalan (waypoint) Anda selalu mendarat tepat di tempat yang Anda inginkan.',
114
+ },
115
+ {
116
+ type: 'title',
117
+ text: 'Tiga Format GPS Utama yang Perlu Diketahui',
118
+ level: 3,
119
+ },
120
+ {
121
+ type: 'title',
122
+ text: '1. Derajat Desimal (Decimal Degrees - DD)',
123
+ level: 4,
124
+ },
125
+ {
126
+ type: 'paragraph',
127
+ html: 'Saat ini, ini adalah format yang paling umum di dunia dan diadopsi secara luas oleh <strong>Google Maps</strong>, ponsel pintar modern, dan sebagian besar layanan pemetaan web. Ini menyatakan posisi sebagai angka desimal sederhana (misalnya, <code>40.7128, -74.0060</code>). Jenis ini sangat mudah untuk disalin, ditempel, dan diproses oleh komputer.',
128
+ },
129
+ {
130
+ type: 'list',
131
+ items: [
132
+ 'Garis lintang (latitude) positif berada di belahan bumi utara; negatif di selatan.',
133
+ 'Garis bujur (longitude) positif berada di sebelah timur Meridian Utama; negatif di sebelah barat.',
134
+ ],
135
+ },
136
+ {
137
+ type: 'title',
138
+ text: '2. Derajat, Menit, Detik (Degrees, Minutes, Seconds - DMS)',
139
+ level: 4,
140
+ },
141
+ {
142
+ type: 'paragraph',
143
+ html: 'Ini adalah format tradisional yang digunakan dalam navigasi laut, penerbangan, dan peta topografi lama (misalnya, <code>40° 42\' 46.08" U, 74° 0\' 21.6" B</code>). Ini lebih intuitif untuk navigasi manusia pada peta cetak karena membagi bumi menjadi 360 derajat, setiap derajat menjadi 60 menit, dan setiap menit menjadi 60 detik. Namun, simbol spesifiknya sering kali membuatnya merepotkan untuk dimasukkan secara digital saat memprogram penerbangan.',
144
+ },
145
+ {
146
+ type: 'title',
147
+ text: '3. Perangkat Keras GPS / Format Mentah (ArduPilot / INAV)',
148
+ level: 4,
149
+ },
150
+ {
151
+ type: 'paragraph',
152
+ html: 'Saat mengekstrak log langsung dari CLI (Command Line Interface), mempelajari catatan penerbangan Blackbox mentah, atau berinteraksi dengan sistem seperti ArduPilot melalui MAVLink, Anda akan sering melihat koordinat direpresentasikan sebagai bilangan bulat yang sangat besar (misalnya, <code>407128000, -740060000</code>).',
153
+ },
154
+ {
155
+ type: 'paragraph',
156
+ html: 'Hal ini dilakukan karena mikrokontroler dapat menghitung bilangan bulat jauh lebih cepat dan lebih tepat dibandingkan dengan angka desimal (titik mengambang). Pada dasarnya format tersebut dihasilkan dengan mengalikan nilai Derajat Desimal (DD) dengan <strong>10.000.000 (1e7)</strong>. Alat kami secara mulus melakukan konversi dari atau kembali ke format ini, menjadikannya sangat ideal untuk analisis data Blackbox.',
157
+ },
158
+ {
159
+ type: 'title',
160
+ text: 'Mengapa Pilot Drone Membutuhkan Konversi Ini',
161
+ level: 3,
162
+ },
163
+ {
164
+ type: 'paragraph',
165
+ html: 'Ada beberapa skenario kritis di mana alat konverter ini akan menjadi sahabat terbaik Anda:',
166
+ },
167
+ {
168
+ type: 'list',
169
+ items: [
170
+ '<strong>Pemulihan Drone yang Hilang (Lost Drone Recovery):</strong> Tampilan Layar (OSD) atau pemancar jarak jauh (Transmitter) Taranis/Radiomaster Anda sering kali menampilkan koordinat terakhir yang diketahui dalam format DD atau DMS. Anda dapat mengubahnya dengan cepat untuk meletakkan pin pelacakan di Google Maps agar Anda bisa menemukan mesin mahal tersebut.',
171
+ '<strong>Perencanaan Waypoint:</strong> Perencanaan misi (Mission Planning) pada perangkat lunak seperti Mission Planner atau QGroundControl menuntut ketelitian terbaik. Mengubah koordinat survei DMS dari denah proyek geografi memastikan drone Anda terbang dalam bidang wilayah yang akurat untuk menghindari penerbangan batas lahan yang ilegal.',
172
+ '<strong>Konfigurasi Firmware Tingkat Lanjut:</strong> Setiap kali menetapkan pangkalan kembali atau Return to Home (RTH) secara keras melalui CLI firmware, kode tersebut kaku dan harus menggunakan serangkaian bilangan bulat dari bentuk Raw Hardware format.',
173
+ ],
174
+ },
175
+ {
176
+ type: 'title',
177
+ text: 'Memahami Presisi Koordinat: Berapa Banyak Desimal yang Anda Butuhkan?',
178
+ level: 3,
179
+ },
180
+ {
181
+ type: 'paragraph',
182
+ html: 'Seberapa besar kisaran nilai angka di belakang koma (desimal) mempengaruhi hitungan jarak riil sesungguhnya (di ukur sejajar batas khatulistiwa)?',
183
+ },
184
+ {
185
+ type: 'list',
186
+ items: [
187
+ '<strong>1 Angka Desimal</strong> (contoh: 40.1): Memiliki margin kesalahan sejauh sekitar 111 kilometer. Sangat tidak bisa diandalkan.',
188
+ '<strong>3 Angka Desimal</strong> (contoh: 40.123): Secara akurasi jaraknya mendekati 110 meter (Area sebesar 1 kelurahan atau pemukiman warga).',
189
+ '<strong>5 Angka Desimal</strong> (contoh: 40.12345): Menghasilkan akurasi mendekati jarak 1.1 meter. (Menjadi parameter sempurna untuk sebagian besar fungsi RTH pesawat komersial amatir)',
190
+ '<strong>7 Angka Desimal</strong> (contoh: 40.1234567): Keakuratan hingga 11 milimeter (Akurasi level Pro / Standart Peta RTK udara murni).',
191
+ ],
192
+ },
193
+ {
194
+ type: 'paragraph',
195
+ html: 'Kebanyakan alat standar M8N atau Modul Gps seri penerusnya M10 memiliki kapasitas pengunci koordinat dalam kisaran antara level digit ke 5 hingga 6 (di bawah langit yg bersih, yang artinya memiliki ketepatan akurasi radius 1-2 meter saja). Pastikan copy semua minimal s/d digit batas titik ke 6 untuk mempermudah mencari posisi presisi barang anda.',
196
+ },
197
+ ],
198
+ 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
+ ],
203
+ howTo: [
204
+ {
205
+ name: 'Meneliti Asal Usul Format.',
206
+ text: 'Identifikasikan dulu tipe GPS-mu. Baris 40.7128 yaitu tipe (DD), Berlambang komapas dan bola 40°42\'46"U Adalah murni (DMS). Tulisan deret sangat gendut seperti ratusan juta yaitu 404306300 yakni Hardware/Raw Firmware format.',
207
+ },
208
+ {
209
+ name: 'Tempel Angkamu ke Penampungan',
210
+ text: 'Setelah yakin salah satunya, Silahkan mengetikan salinan data copy yang dipunya langsung ke kotak kolom yg bersangkutan.',
211
+ },
212
+ {
213
+ name: 'Proses Otomatis Sekejap Terlihat',
214
+ text: 'Tidak Menunggu Hitungan klik , karena sistem real timenya selalu hidup jadi sisa text box lain secara simultan segera terurai dalam data selaranya dengan instan.',
215
+ },
216
+ {
217
+ name: 'Gunakan Klik "Copy" Disamping.',
218
+ text: 'Tombol biru disebelah hasil sangat bisa mempercepat. Segera tuju pada terminal setting Inav/ mission / Map online dan selesaikan pekerjaaan itu.',
219
+ },
220
+ ],
221
+ schemas,
222
+ };
@@ -0,0 +1,222 @@
1
+ import type { GpsCoordinatesConverterLocaleContent } from '../index';
2
+ import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
3
+
4
+ const slug = 'convertitore-coordinate-gps';
5
+ const title = 'Convertitore di Coordinate GPS per Navigazione Waypoint';
6
+ const description = 'Converti le coordinate GPS tra Gradi Decimali (DD), Gradi Minuti Secondi (DMS) e formati hardware GPS. Essenziale per i waypoint ArduPilot e INAV.';
7
+
8
+ const faqItems = [
9
+ {
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").`,
12
+ },
13
+ {
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.',
16
+ },
17
+ {
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.',
20
+ },
21
+ {
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.',
24
+ },
25
+ ];
26
+
27
+ const schemas: GpsCoordinatesConverterLocaleContent['schemas'] = [
28
+ {
29
+ '@context': 'https://schema.org',
30
+ '@type': 'FAQPage',
31
+ mainEntity: faqItems.map((item) => ({
32
+ '@type': 'Question',
33
+ name: item.question,
34
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
35
+ })),
36
+ } as WithContext<FAQPage>,
37
+ {
38
+ '@context': 'https://schema.org',
39
+ '@type': 'HowTo',
40
+ name: title,
41
+ description: description,
42
+ step: [
43
+ {
44
+ '@type': 'HowToStep',
45
+ position: 1,
46
+ name: 'Input Coordinates',
47
+ text: 'Enter your coordinates in either Decimal Degrees (DD) or Degrees, Minutes, Seconds (DMS) format.',
48
+ },
49
+ {
50
+ '@type': 'HowToStep',
51
+ position: 2,
52
+ name: 'Review Conversion',
53
+ text: 'The tool instantly displays the converted coordinates in all supported formats.',
54
+ },
55
+ {
56
+ '@type': 'HowToStep',
57
+ position: 3,
58
+ name: 'Verify on Map',
59
+ text: 'Check the map visualization to ensure the coordinates point to the correct location.',
60
+ },
61
+ {
62
+ '@type': 'HowToStep',
63
+ position: 4,
64
+ name: 'Copy Result',
65
+ text: 'Copy the converted coordinates to your clipboard for use in navigation systems or mission planning.',
66
+ },
67
+ ],
68
+ } as WithContext<HowTo>,
69
+ {
70
+ '@context': 'https://schema.org',
71
+ '@type': 'SoftwareApplication',
72
+ name: title,
73
+ description: description,
74
+ applicationCategory: 'OtherApplication',
75
+ operatingSystem: 'Web',
76
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
77
+ } as WithContext<SoftwareApplication>,
78
+ ];
79
+
80
+
81
+ export const content: GpsCoordinatesConverterLocaleContent = {
82
+ slug,
83
+ title,
84
+ description,
85
+ faqTitle: 'Domande Frequenti',
86
+ bibliographyTitle: 'Manuali di Riferimento',
87
+ 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)',
95
+ copy: 'Copia',
96
+ 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
+ },
104
+ },
105
+ seo: [
106
+ {
107
+ type: 'title',
108
+ text: 'Comprendere le Coordinate GPS: Uno Strumento Indispensabile per la Navigazione dei Droni',
109
+ level: 2,
110
+ },
111
+ {
112
+ type: 'paragraph',
113
+ html: 'Quando si tratta di volo autonomo con i droni, mappature aeree, o recupero del mezzo perso, la precisione e la chiarezza sono fondamentali. Le coordinate GPS sono la spina dorsale della navigazione, ma diversi sistemi (come Betaflight, INAV, ArduPilot, Google Maps) usano formati diversi. Il nostro <strong>Convertitore di Coordinate GPS</strong> fa da ponte, assicurandosi che i i tuoi waypoint atterrino esattamente dove tu intenda.',
114
+ },
115
+ {
116
+ type: 'title',
117
+ text: 'I Tre Formati GPS Chiave Da Conoscere',
118
+ level: 3,
119
+ },
120
+ {
121
+ type: 'title',
122
+ text: '1. Gradi Decimali (Decimal Degrees - DD)',
123
+ level: 4,
124
+ },
125
+ {
126
+ type: 'paragraph',
127
+ html: 'Oggi questo è lo standard più comune per gli esseri umani ed è impiegato universalmente su quasi tutto compreso <strong>Google Maps</strong>, dagli smartphone e portali web di cartografia georeferenziata. Esprime la posizione in uno stabile numero decimale, per intenderci come: (es. <code>40.7128, -74.0060</code>). Estremamente snello e compatto fa le gioie dei copia, incolla in vari sistemi a PC.',
128
+ },
129
+ {
130
+ type: 'list',
131
+ items: [
132
+ 'I gradi di Latitudine positivi sono situati nell\'Equatore Emisfero Nord (Boreale), invece al Sud avranno segno (negativo).',
133
+ 'I valori di Longitudine est si marcano al positivo invece, procedendo verso Ovest prendono le numerazioni al (negativo) partendo dal Meridiano (Zero).',
134
+ ],
135
+ },
136
+ {
137
+ type: 'title',
138
+ text: '2. Gradi, Minuti, Secondi (Degrees, Minutes, Seconds - DMS)',
139
+ level: 4,
140
+ },
141
+ {
142
+ type: 'paragraph',
143
+ html: 'La traccia del retaggio cartografico cartaceo classico tutt\'oggi molto usato nelle vecchie carte navali (es <code>40° 42\' 46.08" N, 74° 0\' 21.6" W</code>). È indubbiamente affascinante nella forma intuitiva ma le scritture comprendenti lettere " N " o "S" ne sfavorisce l\'elaborazione di programmazioni al computer a differenza dei decimali (DD) a causa dei vari simbolismi astrusi.',
144
+ },
145
+ {
146
+ type: 'title',
147
+ text: '3. Formato Raw / Hardware (Utilizzato per Vettori su Ardupilot / INAV )',
148
+ level: 4,
149
+ },
150
+ {
151
+ type: 'paragraph',
152
+ html: 'Quando ci s\'immerge nella schermata a codice CLI , a scaricare una rotta Blackbox , o elaborare codifiche tra microprocessori con i software (tipo ArduPilot over MAVLink) si osservano delle coordinate lunghissime di interi matematici. es. <code>( 407128000 , -740060000 )</code>.',
153
+ },
154
+ {
155
+ type: 'paragraph',
156
+ html: 'Per via dell\'assenza delle potenze a numeri " in virgola mobile " vengono scalati moltiplicando al valore <strong>10,000,000 volte di grandezze di un (1e7 ) </strong> il decimale dei gradi DD. Con tali interi i chip sono felici in fatto di calcoli molto precisi. Le automazioni della nostra utility in real-time evitano conversioni a mano.',
157
+ },
158
+ {
159
+ type: 'title',
160
+ text: 'Perché e A Cosa Serve Al Buon Pilota Di Droni Avere Un Formato in Conversione?',
161
+ level: 3,
162
+ },
163
+ {
164
+ type: 'paragraph',
165
+ html: 'Elenco breve in tre momenti tipici a cui vi esorteremo nell\'avere questo alleato sottomano:',
166
+ },
167
+ {
168
+ type: 'list',
169
+ items: [
170
+ '<strong>Ritrovarlo Al Volo (Lost Drone):</strong> A video su OSD l\'ultimazione o dalla TX RC potrete carpire DMS non decifrabili, convertite qua in numeri DD poi in un past past inseriteli in GPS Maps ed il drone è recuperato',
171
+ '<strong>Tralasciare Il Privato - In Mission Planner O INAV </strong> Se si devono trasferire rilievi catastali a zone ristrette dalle coordinate su foglio in dms vi dovrete tramutarli qui. Se i numeri sbordano la rotta, la zona a Mappature del vostro software di piano d\'ispezione ( Mission Planning, QGround etc...) sconfinerà illegalmente il vicinato o peggio su di te. Usarlo in fase di setup traccia un rientro Sicuro.',
172
+ '<strong>Scritture in firmware : </strong> In impostazioni avanzatissime nel prompt su terminal CLI , in BetaFL non v\'è spazio in memoria (RTH Rescue) ai punti fermi decimali e quindi dovete iniettargli le lunghezze a Intero Grezzo formato Raw che quest\'interfaccia da in via subitanea.',
173
+ ],
174
+ },
175
+ {
176
+ type: 'title',
177
+ text: 'L\'Elogio della Precisione, Decifrare le Matrici di Cifre',
178
+ level: 3,
179
+ },
180
+ {
181
+ type: 'paragraph',
182
+ html: 'Quando sono a chiedermi di che precisione al decimale e quale "numero di zeri far calcolo " guardiamo alla sua interpretazioni metrica terrena misurazioni prese all\'equatore:',
183
+ },
184
+ {
185
+ type: 'list',
186
+ items: [
187
+ '<strong>Primo Decimale:</strong> (es. 40.1 ) , raggio scarto copre sui larghissimi confini territoriali di 111 Kilometri.',
188
+ '<strong>Terza Cifra :</strong> (esempio... 40.123), ci restringe sui ben visibili scarti raggio a 110. ( Un parco di quartiere).',
189
+ '<strong>Cifra a Cinque (5) decimali zero :</strong> Saremo oramai atterrati nel range a misurazione del raggio in ca 1.1 o poco più metri. Ottimale la navigazione Droni consumer amatoriali o i GPS modello a UBLOX (standard tipo M8n- o del chipset chip M10 ).',
190
+ '<strong>Fino ai 7 punti decimali e oltre... :</strong> ( 40.1234567 decimal) precisioni assolute inferiori anche a scarti di 11 millilitri per RTK base professionali.',
191
+ ],
192
+ },
193
+ {
194
+ type: 'paragraph',
195
+ html: 'In un buon settaggio FPV che cattura sui vari 14 - oltre a 30 Satelliti vi riporterebbe misurazioni che taglieranno sulle stime ottime a cinque punti (o il grezzo hardware per il sette / 7 e8 interi ). Perciò un bravo pilota di soccorso o d\'indagine aerofotogrammetria a droni copi le minime 6 o settime decimali ',
196
+ },
197
+ ],
198
+ 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
+ ],
203
+ howTo: [
204
+ {
205
+ name: 'Identificazione della Lingua / Formato Sorgente',
206
+ text: 'Se ti imbatti in testi " 40°42\'46" N 74°00\'.. " capirai sùbito che son del gruppo DMS , a differenza della solida intera mole da numeri quali ( 407128000 , da FC / Hardware / raw ).',
207
+ },
208
+ {
209
+ name: 'Digitazione Inseri Coordinate in Una a scelta dei 3 Testi input ',
210
+ text: 'Ti basta porre a click da un campo dei menù di iniezione di input (DMS - HDW o Gradi) ed introdurre al primo.',
211
+ },
212
+ {
213
+ name: 'Visiona e Controllo.',
214
+ text: 'Magicamente questo applicativo farà i calcoli in live sui form in uscita non appenavrai finiti . ',
215
+ },
216
+ {
217
+ name: 'Copia per uso.',
218
+ text: 'Hai un piccolo click sull iconcine blu ad " Copia " per importare su taranis , su log Inav per rotta , etc il tipo che desideravi .',
219
+ },
220
+ ],
221
+ schemas,
222
+ };
@@ -0,0 +1,222 @@
1
+ import type { GpsCoordinatesConverterLocaleContent } from '../index';
2
+ import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
3
+
4
+ const slug = 'gps-coordinates-converter';
5
+ const title = 'ArduPilotおよびINAVウェイポイント用GPS座標変換機';
6
+ const description = '10進度数法 (DD)、度分秒 (DMS)、およびGPSハードウェアフォーマット間でGPS座標を変換します。ArduPilotおよびINAVウェイポイントに不可欠です。';
7
+
8
+ const faqItems = [
9
+ {
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").`,
12
+ },
13
+ {
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.',
16
+ },
17
+ {
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.',
20
+ },
21
+ {
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.',
24
+ },
25
+ ];
26
+
27
+ const schemas: GpsCoordinatesConverterLocaleContent['schemas'] = [
28
+ {
29
+ '@context': 'https://schema.org',
30
+ '@type': 'FAQPage',
31
+ mainEntity: faqItems.map((item) => ({
32
+ '@type': 'Question',
33
+ name: item.question,
34
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
35
+ })),
36
+ } as WithContext<FAQPage>,
37
+ {
38
+ '@context': 'https://schema.org',
39
+ '@type': 'HowTo',
40
+ name: title,
41
+ description: description,
42
+ step: [
43
+ {
44
+ '@type': 'HowToStep',
45
+ position: 1,
46
+ name: 'Input Coordinates',
47
+ text: 'Enter your coordinates in either Decimal Degrees (DD) or Degrees, Minutes, Seconds (DMS) format.',
48
+ },
49
+ {
50
+ '@type': 'HowToStep',
51
+ position: 2,
52
+ name: 'Review Conversion',
53
+ text: 'The tool instantly displays the converted coordinates in all supported formats.',
54
+ },
55
+ {
56
+ '@type': 'HowToStep',
57
+ position: 3,
58
+ name: 'Verify on Map',
59
+ text: 'Check the map visualization to ensure the coordinates point to the correct location.',
60
+ },
61
+ {
62
+ '@type': 'HowToStep',
63
+ position: 4,
64
+ name: 'Copy Result',
65
+ text: 'Copy the converted coordinates to your clipboard for use in navigation systems or mission planning.',
66
+ },
67
+ ],
68
+ } as WithContext<HowTo>,
69
+ {
70
+ '@context': 'https://schema.org',
71
+ '@type': 'SoftwareApplication',
72
+ name: title,
73
+ description: description,
74
+ applicationCategory: 'OtherApplication',
75
+ operatingSystem: 'Web',
76
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
77
+ } as WithContext<SoftwareApplication>,
78
+ ];
79
+
80
+
81
+ export const content: GpsCoordinatesConverterLocaleContent = {
82
+ slug,
83
+ title,
84
+ description,
85
+ faqTitle: 'よくある質問',
86
+ bibliographyTitle: '参考文献',
87
+ ui: {
88
+ faqTitle: 'よくある質問',
89
+ bibliographyTitle: '参考文献',
90
+ latitude: '緯度',
91
+ longitude: '経度',
92
+ decimalDegrees: '10進度数法 (DD)',
93
+ degreesMinutesSeconds: '度・分・秒 (DMS)',
94
+ gpsHardware: 'GPSハードウェアフォーマット (Raw)',
95
+ copy: 'コピー',
96
+ copied: 'コピーしました!',
97
+ invalidCoordinate: '無効な座標です',
98
+ pasteHardwareMapFormat: '生データを貼り付け (例: 404306300, -739981800)',
99
+ validation: {
100
+ latRange: '緯度は -90 から 90 の間である必要があります。',
101
+ lonRange: '経度は -180 から 180 の間である必要があります。',
102
+ invalidFormat: 'フォーマットが認識されません。入力内容を確認してください。',
103
+ },
104
+ },
105
+ seo: [
106
+ {
107
+ type: 'title',
108
+ text: 'GPS座標の理解:ドローンナビゲーションに不可欠なツール',
109
+ level: 2,
110
+ },
111
+ {
112
+ type: 'paragraph',
113
+ html: '自律飛行ドローン、空撮測量、または紛失した機材の回収において、精度と統一性は鍵となります。GPS座標はナビゲーションのバックボーンを形成していますが、システム(Betaflight、INAV、ArduPilot、Google Mapsなど)によって使用されるフォーマットが異なります。当社の<strong>GPS座標変換機</strong>は、この違いを埋め、意図した場所に正確にウェイポイントを設定できるようにします。',
114
+ },
115
+ {
116
+ type: 'title',
117
+ text: '知っておくべき3つの主要なGPSフォーマット',
118
+ level: 3,
119
+ },
120
+ {
121
+ type: 'title',
122
+ text: '1. 10進度数法 (Decimal Degrees - DD)',
123
+ level: 4,
124
+ },
125
+ {
126
+ type: 'paragraph',
127
+ html: '現在、世界で最も一般的なフォーマットであり、<strong>Google Maps</strong>、最近のスマートフォン、およびほとんどのWebマッピングサービスで広く採用されています。位置を単純な少数で表します(例:<code>40.7128, -74.0060</code>)。コピー&ペーストが非常に簡単で、コンピューターでの処理に優れています。',
128
+ },
129
+ {
130
+ type: 'list',
131
+ items: [
132
+ '正の緯度は北半球、負の緯度は南半球になります。',
133
+ '正の経度は本初子午線の東、負の経度は西になります。',
134
+ ],
135
+ },
136
+ {
137
+ type: 'title',
138
+ text: '2. 度・分・秒 (Degrees, Minutes, Seconds - DMS)',
139
+ level: 4,
140
+ },
141
+ {
142
+ type: 'paragraph',
143
+ html: 'これは、航海、航空、および古い地形図で使用される伝統的なフォーマットです(例:<code>40° 42\' 46.08" N, 74° 0\' 21.6" W</code>)。紙の地図上での人間のナビゲーションには直感的で地球を360度に分割します(1度は60分、1分は60秒)が、特定の記号を含むため、飛行のプログラミング時にデジタルで入力するのが面倒になる場合があります。',
144
+ },
145
+ {
146
+ type: 'title',
147
+ text: '3. GPSハードウェア / Rawフォーマット (ArduPilot / INAV)',
148
+ level: 4,
149
+ },
150
+ {
151
+ type: 'paragraph',
152
+ html: 'CLI(コマンドラインインターフェース)から直接設定を読み取ったり、生のBlackboxフライトログを調べたり、MAVLinkを介してArduPilotなどのシステムと対話したりする場合、座標が大きな整数として表されていることがよくあります(例:<code>407128000, -740060000</code>)。',
153
+ },
154
+ {
155
+ type: 'paragraph',
156
+ html: 'これは、マイクロコントローラーが浮動小数点数(少数)よりも整数をはるかに高速かつ正確に計算できるためです。通常、10進度数法の値に<strong>10,000,000 (1e7)</strong>を掛けたものが使用されます。このツールはこのフォーマットにシームレスに変換(および逆変換)できるため、Blackboxデータの解析に最適です。',
157
+ },
158
+ {
159
+ type: 'title',
160
+ text: 'ドローンパイロットがこの変換を必要とする理由',
161
+ level: 3,
162
+ },
163
+ {
164
+ type: 'paragraph',
165
+ html: 'このコンバーターがあなたの親友となる、いくつかの重要なシナリオがあります:',
166
+ },
167
+ {
168
+ type: 'list',
169
+ items: [
170
+ '<strong>紛失したドローンの回収 (Lost Drone Recovery):</strong> OSD(オンスクリーンディスプレイ)やTaranis/Radiomaster送信機には、最後に確認された座標がDDまたはDMS形式で表示されることがよくあります。これをすばやく変換してGoogle Mapsにピンをドロップし、機体を見つけることができます。',
171
+ '<strong>ウェイポイントプランニング:</strong> Mission PlannerやQGroundControlなどのソフトウェアでのミッションプランニングには、最高の精度が求められます。従来からある測量図面のDMS座標をDDに変換することで、ドローンが正確な境界内を飛行し、意図せぬ敷地への侵入を防ぎます。',
172
+ '<strong>ファームウェアの設定:</strong> CLIで直接RTH(Return to Home)位置を設定する場合、一部のファームウェアでは、小数点以下7桁の精度を持つ生のGPSハードウェアフォーマット(Raw integer)が必要です。',
173
+ ],
174
+ },
175
+ {
176
+ type: 'title',
177
+ text: '座標精度の解読:どれくらいの小数点が必要か?',
178
+ level: 3,
179
+ },
180
+ {
181
+ type: 'paragraph',
182
+ html: '少数の桁数は、現実世界の距離にどの程度影響するのでしょうか?赤道付近での目安は以下の通りです:',
183
+ },
184
+ {
185
+ type: 'list',
186
+ items: [
187
+ '<strong>小数点第1位</strong> (例: 40.1): 約111キロメートルの誤差。',
188
+ '<strong>小数点第3位</strong> (例: 40.123): 約110メートル。',
189
+ '<strong>小数点第5位</strong> (例: 40.12345): 約1.1メートル。 (趣味のドローンの自律飛行やRTHに十分な標準的な精度)',
190
+ '<strong>小数点第7位</strong> (例: 40.1234567): 約11ミリメートル。(プロのRTK測量など、非常に高い精度)',
191
+ ],
192
+ },
193
+ {
194
+ type: 'paragraph',
195
+ html: '上空が開けた場所において、多くの標準的なM8NまたはM10 GPSモジュールは、小数点第5位から第6位(約1〜2メートル)の精度を達成します。正確な回収を保証するため、コピーする際は可能な限り小数点第6位以上を保持するようにしてください。',
196
+ },
197
+ ],
198
+ 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
+ ],
203
+ howTo: [
204
+ {
205
+ name: 'フォーマットの確認',
206
+ text: '変換したい座標のフォーマットを確認します。40.7128, -74.0060 のような形式であればDD(10進度数)です。40°42\'46"N のような形であればDMS(度分秒)です。407128000 のような大きな数字だけであればハードウェア(Raw)形式です。',
207
+ },
208
+ {
209
+ name: '座標の入力',
210
+ text: '3つの入力フィールドのうち、確認したフォーマットに対応する場所に値を入力(または貼り付け)します。',
211
+ },
212
+ {
213
+ name: '変換の実行と確認',
214
+ text: '入力するだけで、コンバーターがリアルタイムで他のフォーマットに自動で計算・反映します。',
215
+ },
216
+ {
217
+ name: 'コピーして使用',
218
+ text: '目的のフォーマットの横にある「コピー」ボタンをクリックして、クリップボードに保存します。Google Maps、CLIエディター、またはMission Planner等でご利用ください。',
219
+ },
220
+ ],
221
+ schemas,
222
+ };