@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.
- package/package.json +1 -1
- package/src/category/index.ts +2 -1
- package/src/entries.ts +4 -1
- package/src/index.ts +1 -0
- package/src/pages/[locale]/[slug].astro +30 -14
- package/src/tests/locale_completeness.test.ts +4 -22
- package/src/tests/shared-test-helpers.ts +56 -0
- package/src/tests/tool_exports.test.ts +34 -0
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/antenna-length-calculator/bibliography.astro +3 -11
- package/src/tool/antenna-length-calculator/bibliography.ts +6 -0
- package/src/tool/antenna-length-calculator/i18n/de.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/en.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/es.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/fr.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/id.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/it.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/ja.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/ko.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/nl.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/pl.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/pt.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/ru.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/sv.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/tr.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/zh.ts +2 -8
- package/src/tool/antenna-length-calculator/seo.astro +2 -26
- package/src/tool/drone-flight-time/bibliography.astro +3 -11
- package/src/tool/drone-flight-time/bibliography.ts +7 -0
- package/src/tool/drone-flight-time/i18n/de.ts +2 -9
- package/src/tool/drone-flight-time/i18n/en.ts +2 -9
- package/src/tool/drone-flight-time/i18n/es.ts +2 -9
- package/src/tool/drone-flight-time/i18n/fr.ts +2 -9
- package/src/tool/drone-flight-time/i18n/id.ts +2 -9
- package/src/tool/drone-flight-time/i18n/it.ts +2 -9
- package/src/tool/drone-flight-time/i18n/ja.ts +2 -9
- package/src/tool/drone-flight-time/i18n/ko.ts +2 -9
- package/src/tool/drone-flight-time/i18n/nl.ts +2 -9
- package/src/tool/drone-flight-time/i18n/pl.ts +2 -9
- package/src/tool/drone-flight-time/i18n/pt.ts +2 -9
- package/src/tool/drone-flight-time/i18n/ru.ts +2 -9
- package/src/tool/drone-flight-time/i18n/sv.ts +2 -9
- package/src/tool/drone-flight-time/i18n/tr.ts +2 -9
- package/src/tool/drone-flight-time/i18n/zh.ts +2 -9
- package/src/tool/drone-flight-time/seo.astro +2 -18
- package/src/tool/drone-power-analyzer/bibliography.astro +6 -0
- package/src/tool/drone-power-analyzer/bibliography.ts +7 -0
- package/src/tool/drone-power-analyzer/component.astro +210 -0
- package/src/tool/drone-power-analyzer/components/FlightProfile.astro +37 -0
- package/src/tool/drone-power-analyzer/components/MotorConfig.astro +46 -0
- package/src/tool/drone-power-analyzer/components/PowerGauge.astro +48 -0
- package/src/tool/drone-power-analyzer/components/WeightConfig.astro +49 -0
- package/src/tool/drone-power-analyzer/drone-power-analyzer.css +535 -0
- package/src/tool/drone-power-analyzer/entry.ts +29 -0
- package/src/tool/drone-power-analyzer/i18n/de.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/en.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/es.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/fr.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/id.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/it.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/ja.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/ko.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/nl.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/pl.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/pt.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/ru.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/sv.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/tr.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/zh.ts +203 -0
- package/src/tool/drone-power-analyzer/index.ts +8 -0
- package/src/tool/drone-power-analyzer/seo.astro +15 -0
- package/src/tool/gps-coordinates-converter/bibliography.astro +3 -11
- package/src/tool/gps-coordinates-converter/bibliography.ts +12 -0
- package/src/tool/gps-coordinates-converter/components/GpsMap.astro +3 -2
- package/src/tool/gps-coordinates-converter/gps-coordinates-converter.css +197 -119
- package/src/tool/gps-coordinates-converter/i18n/de.ts +35 -36
- package/src/tool/gps-coordinates-converter/i18n/en.ts +4 -14
- package/src/tool/gps-coordinates-converter/i18n/es.ts +4 -14
- package/src/tool/gps-coordinates-converter/i18n/fr.ts +4 -14
- package/src/tool/gps-coordinates-converter/i18n/id.ts +36 -37
- package/src/tool/gps-coordinates-converter/i18n/it.ts +35 -36
- package/src/tool/gps-coordinates-converter/i18n/ja.ts +19 -20
- package/src/tool/gps-coordinates-converter/i18n/ko.ts +20 -21
- package/src/tool/gps-coordinates-converter/i18n/nl.ts +33 -36
- package/src/tool/gps-coordinates-converter/i18n/pl.ts +19 -20
- package/src/tool/gps-coordinates-converter/i18n/pt.ts +19 -20
- package/src/tool/gps-coordinates-converter/i18n/ru.ts +19 -20
- package/src/tool/gps-coordinates-converter/i18n/sv.ts +19 -20
- package/src/tool/gps-coordinates-converter/i18n/tr.ts +19 -20
- package/src/tool/gps-coordinates-converter/i18n/zh.ts +20 -21
- package/src/tool/gps-coordinates-converter/seo.astro +2 -26
- package/src/tools.ts +3 -0
- package/src/types.ts +1 -3
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { GpsCoordinatesConverterLocaleContent } from '../index';
|
|
2
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
3
4
|
|
|
4
5
|
const slug = 'conversor-coordenadas-gps';
|
|
5
6
|
const title = 'Conversor Coordenadas GPS de Decimal a GMS Online Gratis';
|
|
@@ -81,11 +82,7 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
81
82
|
slug,
|
|
82
83
|
title,
|
|
83
84
|
description,
|
|
84
|
-
faqTitle: 'Preguntas Frecuentes',
|
|
85
|
-
bibliographyTitle: 'Referencias Bibliográficas',
|
|
86
85
|
ui: {
|
|
87
|
-
faqTitle: 'Preguntas Frecuentes',
|
|
88
|
-
bibliographyTitle: 'Referencias Bibliográficas',
|
|
89
86
|
decimalDD: 'Decimal (DD)',
|
|
90
87
|
degreesGMS: 'Grados (GMS)',
|
|
91
88
|
useLocation: 'Usar mi ubicación',
|
|
@@ -96,6 +93,8 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
96
93
|
gmsTraditional: 'GMS Tradicional',
|
|
97
94
|
nauticalDM: 'Grados y Min. Dec. (Náutica)',
|
|
98
95
|
googleMapsFormat: 'Formato Google Maps',
|
|
96
|
+
mapVisualization: 'Visualización en Mapas',
|
|
97
|
+
mapHint: 'Haz clic en el mapa para capturar coordenadas directamente.',
|
|
99
98
|
copy: 'Copiar',
|
|
100
99
|
copied: '¡Copiado!',
|
|
101
100
|
recentHistory: 'Historial Reciente',
|
|
@@ -242,16 +241,7 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
242
241
|
},
|
|
243
242
|
],
|
|
244
243
|
faq: faqItems,
|
|
245
|
-
bibliography
|
|
246
|
-
{
|
|
247
|
-
name: 'WGS 84 (World Geodetic System 1984): El estándar técnico global para cartografía y GPS.',
|
|
248
|
-
url: 'https://es.wikipedia.org/wiki/WGS84',
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
name: 'IGN (Instituto Geográfico Nacional): Guía sobre sistemas de coordenadas y proyecciones en España.',
|
|
252
|
-
url: 'https://www.ign.es/web/resources/cartografiaEnsenanza/conceptosCarto/descargas/Conceptos_Cartograficos_def.pdf',
|
|
253
|
-
},
|
|
254
|
-
],
|
|
244
|
+
bibliography,
|
|
255
245
|
howTo: [],
|
|
256
246
|
schemas,
|
|
257
247
|
};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { GpsCoordinatesConverterLocaleContent } from '../index';
|
|
2
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
3
4
|
|
|
4
5
|
const slug = 'conversisseur-coordonnees-gps';
|
|
5
6
|
const title = 'Convertisseur de Coordonnées GPS de Décimal vers DMS en Ligne Gratuit';
|
|
@@ -81,11 +82,7 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
81
82
|
slug,
|
|
82
83
|
title,
|
|
83
84
|
description,
|
|
84
|
-
faqTitle: 'Foire Aux Questions',
|
|
85
|
-
bibliographyTitle: 'Références Bibliographiques',
|
|
86
85
|
ui: {
|
|
87
|
-
faqTitle: 'Foire Aux Questions',
|
|
88
|
-
bibliographyTitle: 'Références Bibliographiques',
|
|
89
86
|
decimalDD: 'Décimal (DD)',
|
|
90
87
|
degreesGMS: 'Degrés (DMS)',
|
|
91
88
|
useLocation: 'Utiliser ma position',
|
|
@@ -96,6 +93,8 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
96
93
|
gmsTraditional: 'DMS Traditionnel',
|
|
97
94
|
nauticalDM: 'Degrés & Min. Déc. (Nautique)',
|
|
98
95
|
googleMapsFormat: 'Format Google Maps',
|
|
96
|
+
mapVisualization: 'Visualisation sur la Carte',
|
|
97
|
+
mapHint: 'Cliquez sur la carte pour capturer les coordonnées directement.',
|
|
99
98
|
copy: 'Copier',
|
|
100
99
|
copied: 'Copié !',
|
|
101
100
|
recentHistory: 'Historique Récent',
|
|
@@ -259,16 +258,7 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
259
258
|
answer: 'Oui, une fois la page chargée, toute la logique de conversion est locale (côté client). Seule la carte nécessite une connexion pour télécharger les nouvelles tuiles.',
|
|
260
259
|
},
|
|
261
260
|
],
|
|
262
|
-
bibliography
|
|
263
|
-
{
|
|
264
|
-
name: 'WGS 84 (World Geodetic System 1984) : La norme technique globale pour la cartographie et le GPS.',
|
|
265
|
-
url: 'https://fr.wikipedia.org/wiki/WGS_84',
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
name: 'IGN (Institut national de l\'information géographique et forestière) : Guides sur les coordonnées et projections.',
|
|
269
|
-
url: 'https://www.ign.fr',
|
|
270
|
-
},
|
|
271
|
-
],
|
|
261
|
+
bibliography,
|
|
272
262
|
howTo: [],
|
|
273
263
|
schemas,
|
|
274
264
|
};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { GpsCoordinatesConverterLocaleContent } from '../index';
|
|
2
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
3
4
|
|
|
4
5
|
const slug = 'konverter-koordinat-gps';
|
|
5
6
|
const title = 'Konverter Koordinat GPS untuk Waypoint ArduPilot dan INAV';
|
|
@@ -7,20 +8,20 @@ const description = 'Konversi koordinat GPS antara Derajat Desimal (DD), Derajat
|
|
|
7
8
|
|
|
8
9
|
const faqItems = [
|
|
9
10
|
{
|
|
10
|
-
question: '
|
|
11
|
-
answer: `DD (Decimal Degrees)
|
|
11
|
+
question: 'Apa perbedaan antara DD dan DMS?',
|
|
12
|
+
answer: `DD (Decimal Degrees) menggunakan satu angka dengan desimal (misalnya, 51.50). DMS (Degrees, Minutes, Seconds) membagi derajat menjadi pecahan seksagesimal (misalnya, 51° 30' 0").`,
|
|
12
13
|
},
|
|
13
14
|
{
|
|
14
|
-
question: '
|
|
15
|
-
answer: '
|
|
15
|
+
question: 'Mengapa koordinat negatif digunakan?',
|
|
16
|
+
answer: 'Dalam sistem Desimal (DD), garis lintang di sebelah selatan Khatulistiwa dan garis bujur di sebelah barat Greenwich ditunjukkan dengan tanda negatif untuk memudahkan perhitungan matematis.',
|
|
16
17
|
},
|
|
17
18
|
{
|
|
18
|
-
question: '
|
|
19
|
-
answer: '
|
|
19
|
+
question: 'Berapa banyak presisi yang hilang saat mengonversi?',
|
|
20
|
+
answer: 'Alat kami menggunakan titik mengambang presisi ganda. Dengan 6 desimal di DD, presisinya sekitar 11 sentimeter, yang sudah lebih dari cukup untuk drone dan navigasi sipil.',
|
|
20
21
|
},
|
|
21
22
|
{
|
|
22
|
-
question: '
|
|
23
|
-
answer: '
|
|
23
|
+
question: 'Apakah alat ini berfungsi secara offline?',
|
|
24
|
+
answer: 'Ya, setelah halaman dimuat, semua logika konversi bersifat lokal (sisi klien). Hanya peta yang memerlukan koneksi untuk mengunduh ubin baru.',
|
|
24
25
|
},
|
|
25
26
|
];
|
|
26
27
|
|
|
@@ -43,26 +44,26 @@ const schemas: GpsCoordinatesConverterLocaleContent['schemas'] = [
|
|
|
43
44
|
{
|
|
44
45
|
'@type': 'HowToStep',
|
|
45
46
|
position: 1,
|
|
46
|
-
name: '
|
|
47
|
-
text: '
|
|
47
|
+
name: 'Masukkan Koordinat',
|
|
48
|
+
text: 'Masukkan koordinat Anda dalam format Derajat Desimal (DD) oder Derajat, Menit, Detik (DMS).',
|
|
48
49
|
},
|
|
49
50
|
{
|
|
50
51
|
'@type': 'HowToStep',
|
|
51
52
|
position: 2,
|
|
52
|
-
name: '
|
|
53
|
-
text: '
|
|
53
|
+
name: 'Tinjau Konversi',
|
|
54
|
+
text: 'Alat ini secara instan menampilkan koordinat yang dikonversi dalam semua format yang didukung.',
|
|
54
55
|
},
|
|
55
56
|
{
|
|
56
57
|
'@type': 'HowToStep',
|
|
57
58
|
position: 3,
|
|
58
|
-
name: '
|
|
59
|
-
text: '
|
|
59
|
+
name: 'Verifikasi di Peta',
|
|
60
|
+
text: 'Periksa visualisasi peta untuk memastikan koordinat menunjuk ke lokasi yang benar.',
|
|
60
61
|
},
|
|
61
62
|
{
|
|
62
63
|
'@type': 'HowToStep',
|
|
63
64
|
position: 4,
|
|
64
|
-
name: '
|
|
65
|
-
text: '
|
|
65
|
+
name: 'Salin Hasil',
|
|
66
|
+
text: 'Salin koordinat yang dikonversi ke papan klip Anda untuk digunakan dalam sistem navigasi atau perencanaan misi.',
|
|
66
67
|
},
|
|
67
68
|
],
|
|
68
69
|
} as WithContext<HowTo>,
|
|
@@ -82,25 +83,26 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
82
83
|
slug,
|
|
83
84
|
title,
|
|
84
85
|
description,
|
|
85
|
-
faqTitle: 'Pertanyaan yang Sering Diajukan',
|
|
86
|
-
bibliographyTitle: 'Referensi Bibliografi',
|
|
87
86
|
ui: {
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
87
|
+
decimalDD: 'Desimal (DD)',
|
|
88
|
+
degreesGMS: 'Derajat (DMS)',
|
|
89
|
+
useLocation: 'Gunakan Lokasi Saya',
|
|
90
|
+
lat: 'Lintang',
|
|
91
|
+
lng: 'Bujur',
|
|
92
|
+
latGMS: 'Lintang (DMS)',
|
|
93
|
+
lngGMS: 'Bujur (DMS)',
|
|
94
|
+
gmsTraditional: 'DMS Tradisional',
|
|
95
|
+
nauticalDM: 'Derajat & Men. Des. (Nautika)',
|
|
96
|
+
googleMapsFormat: 'Format Google Maps',
|
|
97
|
+
mapVisualization: 'Visualisasi Peta',
|
|
98
|
+
mapHint: 'Klik pada peta untuk mengambil koordinat secara langsung.',
|
|
95
99
|
copy: 'Salin',
|
|
96
|
-
copied: '
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
invalidFormat: 'Format tidak dikenali. Silakan periksa masukan Anda.',
|
|
103
|
-
},
|
|
100
|
+
copied: 'Tersalin!',
|
|
101
|
+
recentHistory: 'Riwayat Terbaru',
|
|
102
|
+
clear: 'Hapus',
|
|
103
|
+
noHistory: 'Tidak ada konversi terbaru.',
|
|
104
|
+
load: 'Muat',
|
|
105
|
+
delete: 'Hapus',
|
|
104
106
|
},
|
|
105
107
|
seo: [
|
|
106
108
|
{
|
|
@@ -196,10 +198,7 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
196
198
|
},
|
|
197
199
|
],
|
|
198
200
|
faq: faqItems,
|
|
199
|
-
bibliography
|
|
200
|
-
{ name: 'Ardupilot Panduan Pemetaan Posisi Standart.', url: 'https://ardupilot.org/copter/docs/common-positioning-landing-page.html' },
|
|
201
|
-
{ name: 'Pemahaman Degrees decimal Dalam Catatan Wiki', url: 'https://en.wikipedia.org/wiki/Decimal_degrees' },
|
|
202
|
-
],
|
|
201
|
+
bibliography,
|
|
203
202
|
howTo: [
|
|
204
203
|
{
|
|
205
204
|
name: 'Meneliti Asal Usul Format.',
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { GpsCoordinatesConverterLocaleContent } from '../index';
|
|
2
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
3
4
|
|
|
4
5
|
const slug = 'convertitore-coordinate-gps';
|
|
5
6
|
const title = 'Convertitore di Coordinate GPS per Navigazione Waypoint';
|
|
@@ -7,20 +8,20 @@ const description = 'Converti le coordinate GPS tra Gradi Decimali (DD), Gradi M
|
|
|
7
8
|
|
|
8
9
|
const faqItems = [
|
|
9
10
|
{
|
|
10
|
-
question: '
|
|
11
|
-
answer: `DD (
|
|
11
|
+
question: 'Qual è la differenza tra DD e DMS?',
|
|
12
|
+
answer: `DD (Gradi Decimali) utilizza un singolo numero con decimali (es. 51.50). DMS (Gradi, Minuti, Secondi) divide il grado in frazioni sessagesimali (es. 51° 30' 0").`,
|
|
12
13
|
},
|
|
13
14
|
{
|
|
14
|
-
question: '
|
|
15
|
-
answer: '
|
|
15
|
+
question: 'Perché vengono utilizzate coordinate negative?',
|
|
16
|
+
answer: 'Nel sistema decimale (DD), le latitudini a sud dell\'Equatore e le longitudini a ovest di Greenwich sono indicate con un segno negativo per facilitare i calcoli matematici.',
|
|
16
17
|
},
|
|
17
18
|
{
|
|
18
|
-
question: '
|
|
19
|
-
answer: '
|
|
19
|
+
question: 'Quanta precisione perdo durante la conversione?',
|
|
20
|
+
answer: 'Il nostro strumento utilizza la virgola mobile a doppia precisione. Con 6 decimali in DD, la precisione è di circa 11 centimetri, il che è più che sufficiente per i droni e la navigazione civile.',
|
|
20
21
|
},
|
|
21
22
|
{
|
|
22
|
-
question: '
|
|
23
|
-
answer: '
|
|
23
|
+
question: 'Questo strumento funziona offline?',
|
|
24
|
+
answer: 'Sì, una volta caricata la pagina, tutta la logica di conversione è locale (lato client). Solo la mappa richiede una connessione per scaricare nuovi tasselli.',
|
|
24
25
|
},
|
|
25
26
|
];
|
|
26
27
|
|
|
@@ -43,26 +44,26 @@ const schemas: GpsCoordinatesConverterLocaleContent['schemas'] = [
|
|
|
43
44
|
{
|
|
44
45
|
'@type': 'HowToStep',
|
|
45
46
|
position: 1,
|
|
46
|
-
name: '
|
|
47
|
-
text: '
|
|
47
|
+
name: 'Inserimento Coordinate',
|
|
48
|
+
text: 'Inserisci le tue coordinate nel formato Gradi Decimali (DD) o Gradi, Minuti, Secondi (DMS).',
|
|
48
49
|
},
|
|
49
50
|
{
|
|
50
51
|
'@type': 'HowToStep',
|
|
51
52
|
position: 2,
|
|
52
|
-
name: '
|
|
53
|
-
text: '
|
|
53
|
+
name: 'Revisione Conversione',
|
|
54
|
+
text: 'Lo strumento visualizza istantaneamente le coordinate convertite in tutti i formati supportati.',
|
|
54
55
|
},
|
|
55
56
|
{
|
|
56
57
|
'@type': 'HowToStep',
|
|
57
58
|
position: 3,
|
|
58
|
-
name: '
|
|
59
|
-
text: '
|
|
59
|
+
name: 'Verifica su Mappa',
|
|
60
|
+
text: 'Controlla la visualizzazione sulla mappa per assicurarti che le coordinate indichino la posizione corretta.',
|
|
60
61
|
},
|
|
61
62
|
{
|
|
62
63
|
'@type': 'HowToStep',
|
|
63
64
|
position: 4,
|
|
64
|
-
name: '
|
|
65
|
-
text: '
|
|
65
|
+
name: 'Copia Risultato',
|
|
66
|
+
text: 'Copia le coordinate convertite negli appunti per utilizzarle nei sistemi di navigazione o nella pianificazione delle missioni.',
|
|
66
67
|
},
|
|
67
68
|
],
|
|
68
69
|
} as WithContext<HowTo>,
|
|
@@ -82,25 +83,26 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
82
83
|
slug,
|
|
83
84
|
title,
|
|
84
85
|
description,
|
|
85
|
-
faqTitle: 'Domande Frequenti',
|
|
86
|
-
bibliographyTitle: 'Manuali di Riferimento',
|
|
87
86
|
ui: {
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
87
|
+
decimalDD: 'Decimale (DD)',
|
|
88
|
+
degreesGMS: 'Gradi (DMS)',
|
|
89
|
+
useLocation: 'Usa la mia posizione',
|
|
90
|
+
lat: 'Latitudine',
|
|
91
|
+
lng: 'Longitudine',
|
|
92
|
+
latGMS: 'Latitudine (DMS)',
|
|
93
|
+
lngGMS: 'Longitudine (DMS)',
|
|
94
|
+
gmsTraditional: 'DMS Tradizionale',
|
|
95
|
+
nauticalDM: 'Gradi & Min. Dec. (Nautico)',
|
|
96
|
+
googleMapsFormat: 'Formato Google Maps',
|
|
97
|
+
mapVisualization: 'Visualizzazione su Mappa',
|
|
98
|
+
mapHint: 'Clicca sulla mappa per catturare le coordinate direttamente.',
|
|
95
99
|
copy: 'Copia',
|
|
96
100
|
copied: 'Copiato!',
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
invalidFormat: 'Formato non riconosciuto. Per favore controlla l\'inserimento.',
|
|
103
|
-
},
|
|
101
|
+
recentHistory: 'Cronologia Recente',
|
|
102
|
+
clear: 'Cancella',
|
|
103
|
+
noHistory: 'Nessuna conversione recente.',
|
|
104
|
+
load: 'Carica',
|
|
105
|
+
delete: 'Elimina',
|
|
104
106
|
},
|
|
105
107
|
seo: [
|
|
106
108
|
{
|
|
@@ -196,10 +198,7 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
196
198
|
},
|
|
197
199
|
],
|
|
198
200
|
faq: faqItems,
|
|
199
|
-
bibliography
|
|
200
|
-
{ name: 'Ardupilot Documentazioni ed integrazione in Volo Autonomo .', url: 'https://ardupilot.org/copter/docs/common-positioning-landing-page.html' },
|
|
201
|
-
{ name: 'Spazio, Geografia in wikipedia gradi e forme decimale', url: 'https://en.wikipedia.org/wiki/Decimal_degrees' },
|
|
202
|
-
],
|
|
201
|
+
bibliography,
|
|
203
202
|
howTo: [
|
|
204
203
|
{
|
|
205
204
|
name: 'Identificazione della Lingua / Formato Sorgente',
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { GpsCoordinatesConverterLocaleContent } from '../index';
|
|
2
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
3
4
|
|
|
4
5
|
const slug = 'gps-coordinates-converter';
|
|
5
6
|
const title = 'ArduPilotおよびINAVウェイポイント用GPS座標変換機';
|
|
@@ -82,25 +83,26 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
82
83
|
slug,
|
|
83
84
|
title,
|
|
84
85
|
description,
|
|
85
|
-
faqTitle: 'よくある質問',
|
|
86
|
-
bibliographyTitle: '参考文献',
|
|
87
86
|
ui: {
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
87
|
+
decimalDD: '10進法 (DD)',
|
|
88
|
+
degreesGMS: '度分秒 (DMS)',
|
|
89
|
+
useLocation: '現在地を使用',
|
|
90
|
+
lat: '緯度',
|
|
91
|
+
lng: '経度',
|
|
92
|
+
latGMS: '緯度 (DMS)',
|
|
93
|
+
lngGMS: '経度 (DMS)',
|
|
94
|
+
gmsTraditional: '伝統的 DMS',
|
|
95
|
+
nauticalDM: '度 & 分 (航海用)',
|
|
96
|
+
googleMapsFormat: 'Googleマップ形式',
|
|
97
|
+
mapVisualization: 'マップ表示',
|
|
98
|
+
mapHint: 'マップをクリックして座標を直接取得します。',
|
|
95
99
|
copy: 'コピー',
|
|
96
100
|
copied: 'コピーしました!',
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
invalidFormat: 'フォーマットが認識されません。入力内容を確認してください。',
|
|
103
|
-
},
|
|
101
|
+
recentHistory: '最近の履歴',
|
|
102
|
+
clear: '消去',
|
|
103
|
+
noHistory: '履歴はありません。',
|
|
104
|
+
load: '読み込む',
|
|
105
|
+
delete: '削除',
|
|
104
106
|
},
|
|
105
107
|
seo: [
|
|
106
108
|
{
|
|
@@ -196,10 +198,7 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
196
198
|
},
|
|
197
199
|
],
|
|
198
200
|
faq: faqItems,
|
|
199
|
-
bibliography
|
|
200
|
-
{ name: 'ArduPilot GPS Integration', url: 'https://ardupilot.org/copter/docs/common-positioning-landing-page.html' },
|
|
201
|
-
{ name: 'Decimal degrees vs DMS (Wikipedia)', url: 'https://en.wikipedia.org/wiki/Decimal_degrees' },
|
|
202
|
-
],
|
|
201
|
+
bibliography,
|
|
203
202
|
howTo: [
|
|
204
203
|
{
|
|
205
204
|
name: 'フォーマットの確認',
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { GpsCoordinatesConverterLocaleContent } from '../index';
|
|
2
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
3
4
|
|
|
4
5
|
const slug = 'gps-coordinates-converter';
|
|
5
6
|
const title = 'ArduPilot 및 INAV 웨이포인트용 GPS 좌표 변환기';
|
|
@@ -82,25 +83,26 @@ export const content: GpsCoordinatesConverterLocaleContent = {
|
|
|
82
83
|
slug,
|
|
83
84
|
title,
|
|
84
85
|
description,
|
|
85
|
-
faqTitle: '자주 묻는 질문',
|
|
86
|
-
bibliographyTitle: '참고 문헌',
|
|
87
86
|
ui: {
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
87
|
+
decimalDD: '십진수 (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
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
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: '
|
|
11
|
-
answer: `DD (
|
|
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: '
|
|
15
|
-
answer: 'In
|
|
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: '
|
|
19
|
-
answer: '
|
|
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: '
|
|
23
|
-
answer: '
|
|
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: '
|
|
47
|
-
text: '
|
|
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: '
|
|
53
|
-
text: '
|
|
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: '
|
|
59
|
-
text: '
|
|
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: '
|
|
65
|
-
text: '
|
|
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
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
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
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
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',
|