@jjlmoya/utils-drones 1.16.0 → 1.18.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/i18n/fr.ts +9 -9
- package/src/category/i18n/ru.ts +5 -5
- package/src/entries.ts +4 -1
- package/src/index.ts +1 -0
- package/src/tests/diacritics_density.test.ts +118 -0
- package/src/tests/inverted_punctuation.test.ts +84 -0
- package/src/tests/locale_completeness.test.ts +2 -2
- package/src/tests/no_en_dash.test.ts +70 -0
- package/src/tests/script_density.test.ts +94 -0
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/antenna-length-calculator/i18n/de.ts +2 -2
- package/src/tool/antenna-length-calculator/i18n/fr.ts +12 -12
- package/src/tool/antenna-length-calculator/i18n/ru.ts +6 -6
- package/src/tool/antenna-length-calculator/i18n/tr.ts +3 -3
- package/src/tool/antenna-length-calculator/i18n/zh.ts +10 -10
- package/src/tool/drone-flight-time/drone-flight-time-calculator.css +65 -7
- package/src/tool/drone-flight-time/i18n/fr.ts +11 -11
- package/src/tool/drone-flight-time/i18n/ru.ts +9 -9
- package/src/tool/drone-flight-time/i18n/sv.ts +3 -3
- package/src/tool/drone-flight-time/i18n/zh.ts +2 -2
- package/src/tool/drone-power-analyzer/i18n/de.ts +10 -10
- package/src/tool/drone-power-analyzer/i18n/en.ts +9 -9
- package/src/tool/drone-power-analyzer/i18n/es.ts +6 -6
- package/src/tool/drone-power-analyzer/i18n/fr.ts +16 -16
- package/src/tool/drone-power-analyzer/i18n/id.ts +9 -9
- package/src/tool/drone-power-analyzer/i18n/it.ts +6 -6
- package/src/tool/drone-power-analyzer/i18n/ja.ts +4 -4
- package/src/tool/drone-power-analyzer/i18n/ko.ts +4 -4
- package/src/tool/drone-power-analyzer/i18n/nl.ts +9 -9
- package/src/tool/drone-power-analyzer/i18n/pl.ts +11 -11
- package/src/tool/drone-power-analyzer/i18n/pt.ts +9 -9
- package/src/tool/drone-power-analyzer/i18n/ru.ts +17 -17
- package/src/tool/drone-power-analyzer/i18n/sv.ts +9 -9
- package/src/tool/drone-power-analyzer/i18n/tr.ts +9 -9
- package/src/tool/drone-power-analyzer/i18n/zh.ts +13 -13
- package/src/tool/gps-coordinates-converter/i18n/fr.ts +10 -10
- package/src/tool/gps-coordinates-converter/i18n/it.ts +2 -2
- package/src/tool/gps-coordinates-converter/i18n/pt.ts +4 -4
- package/src/tool/gps-coordinates-converter/i18n/ru.ts +7 -7
- package/src/tool/gps-coordinates-converter/i18n/zh.ts +4 -4
- package/src/tool/gsd-flight-planner/InputsColumn.astro +108 -0
- package/src/tool/gsd-flight-planner/ResultsColumn.astro +90 -0
- package/src/tool/gsd-flight-planner/bibliography.astro +6 -0
- package/src/tool/gsd-flight-planner/bibliography.ts +7 -0
- package/src/tool/gsd-flight-planner/component.astro +22 -0
- package/src/tool/gsd-flight-planner/entry.ts +29 -0
- package/src/tool/gsd-flight-planner/gsd-flight-planner.css +515 -0
- package/src/tool/gsd-flight-planner/i18n/de.ts +214 -0
- package/src/tool/gsd-flight-planner/i18n/en.ts +214 -0
- package/src/tool/gsd-flight-planner/i18n/es.ts +221 -0
- package/src/tool/gsd-flight-planner/i18n/fr.ts +214 -0
- package/src/tool/gsd-flight-planner/i18n/id.ts +214 -0
- package/src/tool/gsd-flight-planner/i18n/it.ts +214 -0
- package/src/tool/gsd-flight-planner/i18n/ja.ts +214 -0
- package/src/tool/gsd-flight-planner/i18n/ko.ts +214 -0
- package/src/tool/gsd-flight-planner/i18n/nl.ts +214 -0
- package/src/tool/gsd-flight-planner/i18n/pl.ts +214 -0
- package/src/tool/gsd-flight-planner/i18n/pt.ts +214 -0
- package/src/tool/gsd-flight-planner/i18n/ru.ts +214 -0
- package/src/tool/gsd-flight-planner/i18n/sv.ts +214 -0
- package/src/tool/gsd-flight-planner/i18n/tr.ts +214 -0
- package/src/tool/gsd-flight-planner/i18n/zh.ts +214 -0
- package/src/tool/gsd-flight-planner/index.ts +8 -0
- package/src/tool/gsd-flight-planner/logic.js +326 -0
- package/src/tool/gsd-flight-planner/seo.astro +15 -0
- package/src/tools.ts +3 -0
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
import type { GsdFlightPlannerLocaleContent } from '../index';
|
|
2
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
const slug = 'planificateur-vol-gsd';
|
|
6
|
+
const title = 'Planificateur de Vol GSD: Calculateur de Distance d\'Échantillonnage au Sol';
|
|
7
|
+
const description = 'Calculez la distance d\'échantillonnage au sol (GSD) pour vos missions de photogrammétrie. Supporte DJI, Autel et caméras personnalisées. Planification de vol avec indicateurs de qualité visuelle.';
|
|
8
|
+
|
|
9
|
+
const faqItems = [
|
|
10
|
+
{
|
|
11
|
+
question: 'Qu\'est-ce que la Distance d\'Échantillonnage au Sol (GSD) ?',
|
|
12
|
+
answer: 'La GSD est la distance au sol représentée par un pixel dans votre image. Une GSD plus faible signifie une résolution et un niveau de détail plus élevés. Par exemple, une GSD de 1 cm/px permet de distinguer des détails de 1 centimètre, ce qui est crucial pour l\'arpentage.',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
question: 'Comment trouver les spécifications de la caméra de mon drone ?',
|
|
16
|
+
answer: 'Consultez le manuel de votre drone pour connaître les dimensions du capteur et la distance focale. Vous pouvez également utiliser nos préréglages pour des modèles populaires comme le DJI Mavic 3E ou l\'Autel EVO II. Pour les caméras personnalisées, mesurez la taille du capteur à partir des spécifications de votre objectif.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
question: 'De quelle GSD ai-je besoin selon le type de mission ?',
|
|
20
|
+
answer: 'Topographie de haute précision: 1-2 cm/px. Cartographie standard: 2-5 cm/px. Inspection et surveillance: 5-10 cm/px. Relevés visuels: 10+ cm/px. Choisissez en fonction des exigences de précision de votre projet.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: 'Qu\'est-ce que le recouvrement d\'image et pourquoi est-ce important ?',
|
|
24
|
+
answer: 'Le recouvrement est le pourcentage de zone commune entre deux photos consécutives. Un recouvrement élevé (60-80 %) assure une couverture complète et améliore la qualité du modèle 3D. Le recouvrement frontal affecte l\'espacement des photos ; le recouvrement latéral affecte le nombre de lignes de vol.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: 'Comment calculer l\'altitude de vol idéale ?',
|
|
28
|
+
answer: 'Utilisez ce calculateur: GSD souhaitée × distance focale ÷ largeur du capteur = altitude. Le calculateur effectue ce calcul automatiquement et affiche l\'altitude maximale de sécurité pour maintenir votre précision cible et éviter le flou de mouvement.',
|
|
29
|
+
},
|
|
30
|
+
];
|
|
31
|
+
|
|
32
|
+
const howToSteps = [
|
|
33
|
+
{
|
|
34
|
+
name: 'Sélectionner ou configurer la caméra',
|
|
35
|
+
text: 'Choisissez parmi les modèles préconfigurés (DJI Mavic 3E, Autel EVO II, etc.) ou entrez manuellement les dimensions du capteur et la distance focale. Les préréglages chargent tous les paramètres instantanément.',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
name: 'Régler l\'altitude de vol',
|
|
39
|
+
text: 'Utilisez le curseur d\'altitude pour ajuster la hauteur par rapport au sol (AGL). Observez la mise à jour de la GSD en temps réel pour voir comment l\'altitude affecte la résolution.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
name: 'Définir les besoins en recouvrement',
|
|
43
|
+
text: 'Réglez les pourcentages de recouvrement frontal et latéral. Un recouvrement plus élevé garantit une couverture complète mais augmente le temps de mission et le nombre d\'images.',
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
name: 'Réviser les résultats et exporter',
|
|
47
|
+
text: 'Vérifiez la GSD, la zone de couverture et la classification de précision. Gérez un rapport rapide à joindre à votre plan de vol officiel.',
|
|
48
|
+
},
|
|
49
|
+
];
|
|
50
|
+
|
|
51
|
+
const schemas: GsdFlightPlannerLocaleContent['schemas'] = [
|
|
52
|
+
{
|
|
53
|
+
'@context': 'https://schema.org',
|
|
54
|
+
'@type': 'FAQPage',
|
|
55
|
+
mainEntity: faqItems.map((item) => ({
|
|
56
|
+
'@type': 'Question',
|
|
57
|
+
name: item.question,
|
|
58
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
59
|
+
})),
|
|
60
|
+
} as WithContext<FAQPage>,
|
|
61
|
+
{
|
|
62
|
+
'@context': 'https://schema.org',
|
|
63
|
+
'@type': 'HowTo',
|
|
64
|
+
name: title,
|
|
65
|
+
description: description,
|
|
66
|
+
step: howToSteps.map((step, i) => ({
|
|
67
|
+
'@type': 'HowToStep',
|
|
68
|
+
position: i + 1,
|
|
69
|
+
name: step.name,
|
|
70
|
+
text: step.text,
|
|
71
|
+
})),
|
|
72
|
+
} as WithContext<HowTo>,
|
|
73
|
+
{
|
|
74
|
+
'@context': 'https://schema.org',
|
|
75
|
+
'@type': 'SoftwareApplication',
|
|
76
|
+
name: title,
|
|
77
|
+
description: description,
|
|
78
|
+
applicationCategory: 'OtherApplication',
|
|
79
|
+
operatingSystem: 'Web',
|
|
80
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
81
|
+
} as WithContext<SoftwareApplication>,
|
|
82
|
+
];
|
|
83
|
+
|
|
84
|
+
export const content: GsdFlightPlannerLocaleContent = {
|
|
85
|
+
slug,
|
|
86
|
+
title,
|
|
87
|
+
description,
|
|
88
|
+
ui: {
|
|
89
|
+
configuration: 'Configuration',
|
|
90
|
+
cameraSelection: 'Sélection Caméra',
|
|
91
|
+
manualMode: 'Mode Manuel',
|
|
92
|
+
sensorConfig: 'Configuration Capteur',
|
|
93
|
+
width: 'Largeur',
|
|
94
|
+
height: 'Hauteur',
|
|
95
|
+
focalLength: 'Distance Focale',
|
|
96
|
+
imageResolution: 'Résolution Image',
|
|
97
|
+
w: 'L',
|
|
98
|
+
h: 'H',
|
|
99
|
+
px: 'px',
|
|
100
|
+
altitudeAgl: 'Altitude (AGL)',
|
|
101
|
+
overlapSettings: 'Configuration Recouvrement',
|
|
102
|
+
forward: 'Frontal',
|
|
103
|
+
lateral: 'Latéral',
|
|
104
|
+
missionArea: 'Zone de Mission',
|
|
105
|
+
totalAreaToSurvey: 'Surface Totale à Relever',
|
|
106
|
+
hectareHint: '1 ha = 10 000 m²',
|
|
107
|
+
inverseCalc: 'Calcul Inverse',
|
|
108
|
+
targetGsd: 'GSD Cible',
|
|
109
|
+
maxAltitude: 'Altitude Max',
|
|
110
|
+
reset: 'Réinitialiser',
|
|
111
|
+
results: 'Résultats',
|
|
112
|
+
gsdResult: 'Distance d\'Échantillonnage au Sol',
|
|
113
|
+
gsdValue: 'GSD',
|
|
114
|
+
gsdUnit: 'cm/px',
|
|
115
|
+
highPrec: 'Haute Préc.',
|
|
116
|
+
standard: 'Standard',
|
|
117
|
+
inspection: 'Inspection',
|
|
118
|
+
visual: 'Visuel',
|
|
119
|
+
coveragePerImage: 'Couverture par Image',
|
|
120
|
+
area: 'Surface',
|
|
121
|
+
spacing: 'Espacement',
|
|
122
|
+
flightDir: 'Vol →',
|
|
123
|
+
missionMetrics: 'Données de Mission',
|
|
124
|
+
images: 'Images',
|
|
125
|
+
shots: 'photos',
|
|
126
|
+
flightLines: 'Lignes de Vol',
|
|
127
|
+
lines: 'lignes',
|
|
128
|
+
flightTime: 'Temps de Vol',
|
|
129
|
+
min: 'min',
|
|
130
|
+
dataVolume: 'Volume de Données',
|
|
131
|
+
gb: 'Go',
|
|
132
|
+
copyShareLink: 'Copier le Lien',
|
|
133
|
+
downloadReport: 'Télécharger le Rapport',
|
|
134
|
+
copiedToClipboard: 'Copié !',
|
|
135
|
+
metric: 'Métrique',
|
|
136
|
+
imperial: 'Impérial',
|
|
137
|
+
classHighPrecision: 'Topographie de Haute Précision',
|
|
138
|
+
classStandard: 'Cartographie Standard',
|
|
139
|
+
classInspection: 'Inspection et Surveillance',
|
|
140
|
+
classVisual: 'Relevé Visuel',
|
|
141
|
+
ultraHighResAlert: 'Très haute résolution: assurez-vous d\'avoir assez de stockage et de puissance de calcul',
|
|
142
|
+
lowOverlapAlert: 'Recouvrement frontal sous 60 %: peut affecter la qualité du modèle 3D',
|
|
143
|
+
largeDatasetAlert: 'Volume de données très important: envisagez de diviser en plusieurs vols',
|
|
144
|
+
presetDjiMavic3e: 'DJI Mavic 3E',
|
|
145
|
+
presetDjiMatrice300: 'DJI Matrice 300 RTK',
|
|
146
|
+
presetAutelEvoII: 'Autel EVO II',
|
|
147
|
+
presetDjiAir3s: 'DJI Air 3S',
|
|
148
|
+
},
|
|
149
|
+
seo: [
|
|
150
|
+
{
|
|
151
|
+
type: 'title',
|
|
152
|
+
text: 'Planificateur de Vol GSD: Le Calculateur de Photogrammétrie Complet',
|
|
153
|
+
level: 2,
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
type: 'paragraph',
|
|
157
|
+
html: 'La <strong>Distance d\'Échantillonnage au Sol (GSD)</strong> est la donnée la plus importante en photogrammétrie par drone. Une erreur de calcul peut gâcher une journée entière de vol et coûter des milliers d\'euros en perte de productivité. Ce calculateur élimine ce risque.',
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
type: 'title',
|
|
161
|
+
text: 'Pourquoi la GSD est cruciale pour les professionnels',
|
|
162
|
+
level: 3,
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
type: 'paragraph',
|
|
166
|
+
html: 'Que vous fassiez de l\'arpentage, de la modélisation 3D ou de la surveillance d\'infrastructure, la GSD détermine le niveau de détail capturé. Une mission à 1 cm/px capte des détails qu\'une mission à 5 cm/px rate. Mais voler trop bas gaspille la batterie et prolonge inutilement le temps de mission.',
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
type: 'title',
|
|
170
|
+
text: 'GSD par type de mission',
|
|
171
|
+
level: 3,
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
type: 'list',
|
|
175
|
+
items: [
|
|
176
|
+
'<strong>Topographie de Haute Précision (1-2 cm/px) :</strong> Précision de grade topographique pour parcelles, sites miniers et projets d\'ingénierie.',
|
|
177
|
+
'<strong>Cartographie Standard (2-5 cm/px) :</strong> Orthomosaïques, suivi agricole et cartes d\'usage général.',
|
|
178
|
+
'<strong>Inspection et Surveillance (5-10 cm/px) :</strong> Inspection de bâtiments, contrôle de lignes électriques et détection de changements.',
|
|
179
|
+
'<strong>Relevés Visuels (10+ cm/px) :</strong> Reconnaissance de grandes zones et évaluation visuelle.',
|
|
180
|
+
],
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
type: 'title',
|
|
184
|
+
text: 'La formule GSD',
|
|
185
|
+
level: 3,
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
type: 'paragraph',
|
|
189
|
+
html: '<code>GSD (cm/px) = (Altitude × Largeur Capteur) / (Distance Focale × Largeur Image) × 100</code><br/>Ce calculateur gère les maths. Vous vous concentrez sur la mission.',
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
type: 'title',
|
|
193
|
+
text: 'Recouvrement: Pourquoi 60-80 % est l\'idéal',
|
|
194
|
+
level: 3,
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
type: 'paragraph',
|
|
198
|
+
html: 'Un faible recouvrement (20-40 %) économise la batterie mais risque de créer des trous dans la couverture. Un recouvrement élevé (80 %+) garantit une couverture complète mais prolonge la mission. La <strong>plage 60-80 %</strong> est le standard professionnel: elle assure une reconstruction 3D complète sans redondance excessive.',
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
type: 'title',
|
|
202
|
+
text: 'Planifiez de meilleures missions avec des données réelles',
|
|
203
|
+
level: 3,
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
type: 'paragraph',
|
|
207
|
+
html: 'Avant chaque vol, utilisez ce calculateur pour déterminer: l\'altitude exacte pour la GSD requise, le nombre de photos nécessaires, le temps total de mission et si le flou de mouvement est un risque. Avec ces données, vous exécuterez des missions précises et éviterez des erreurs coûteuses.',
|
|
208
|
+
},
|
|
209
|
+
],
|
|
210
|
+
faq: faqItems,
|
|
211
|
+
bibliography,
|
|
212
|
+
howTo: howToSteps,
|
|
213
|
+
schemas,
|
|
214
|
+
};
|
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
import type { GsdFlightPlannerLocaleContent } from '../index';
|
|
2
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
const slug = 'perencana-terbang-gsd';
|
|
6
|
+
const title = 'Perencana Terbang GSD: Kalkulator Jarak Sampel Tanah';
|
|
7
|
+
const description = 'Hitung Jarak Sampel Tanah (GSD) untuk misi fotogrametri. Dukungan untuk DJI, Autel, dan kamera khusus. Perencanaan penerbangan real-time dengan indikator kualitas visual.';
|
|
8
|
+
|
|
9
|
+
const faqItems = [
|
|
10
|
+
{
|
|
11
|
+
question: 'Apa itu Ground Sample Distance (GSD)?',
|
|
12
|
+
answer: 'GSD adalah jarak di lapangan yang diwakili oleh satu piksel dalam gambar Anda. GSD yang lebih rendah berarti resolusi dan detail yang lebih tinggi. Sebagai contoh, GSD 1 cm/px memungkinkan Anda melihat detail sekecil 1 sentimeter, yang sangat penting untuk pemetaan.',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
question: 'Bagaimana cara menemukan spesifikasi kamera drone saya?',
|
|
16
|
+
answer: 'Periksa manual drone Anda untuk dimensi sensor dan panjang fokus. Atau, gunakan preset kamera kami untuk model populer seperti DJI Mavic 3E atau Autel EVO II. Untuk kamera khusus, ukur ukuran sensor dari spesifikasi lensa Anda.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
question: 'GSD apa yang saya butuhkan untuk jenis misi yang berbeda?',
|
|
20
|
+
answer: 'Topografi presisi tinggi: 1-2 cm/px. Pemetaan standar: 2-5 cm/px. Inspeksi dan pemantauan: 5-10 cm/px. Survei visual: 10+ cm/px. Pilih berdasarkan persyaratan akurasi proyek Anda.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: 'Apa itu overlap gambar dan mengapa itu penting?',
|
|
24
|
+
answer: 'Overlap adalah persentase area yang muncul di foto berturut-turut. Overlap yang tinggi (60-80%) memastikan cakupan lengkap e meningkatkan kualitas model 3D. Overlap depan memengaruhi jarak foto; overlap samping memengaruhi jumlah garis terbang.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: 'Bagaimana cara menghitung ketinggian terbang ideal?',
|
|
28
|
+
answer: 'Gunakan kalkulator ini: GSD yang Diinginkan × panjang fokus ÷ lebar sensor = ketinggian. Kalkulator melakukan ini secara otomatis e menunjukkan ketinggian aman maksimum untuk menjaga presisi target Anda dan menghindari motion blur.',
|
|
29
|
+
},
|
|
30
|
+
];
|
|
31
|
+
|
|
32
|
+
const howToSteps = [
|
|
33
|
+
{
|
|
34
|
+
name: 'Pilih atau Konfigurasi Kamera',
|
|
35
|
+
text: 'Pilih dari model yang sudah dikonfigurasi (DJI Mavic 3E, Autel EVO II, dll) atau masukkan dimensi sensor dan panjang fokus secara manual. Preset memuat semua parameter secara instan.',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
name: 'Atur Ketinggian Terbang',
|
|
39
|
+
text: 'Gunakan slider ketinggian untuk menyesuaikan tinggi di atas permukaan tanah (AGL). Lihat pembaruan GSD secara real-time untuk melihat bagaimana ketinggian memengaruhi resolusi gambar.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
name: 'Tentukan Persyaratan Overlap',
|
|
43
|
+
text: 'Atur persentase overlap depan dan samping. Overlap yang lebih tinggi memastikan cakupan lengkap tetapi meningkatkan waktu misi dan jumlah gambar.',
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
name: 'Tinjau Hasil dan Ekspor',
|
|
47
|
+
text: 'Periksa GSD, area cakupan, dan klasifikasi presisi. Buat laporan cepat untuk dilampirkan pada rencana penerbangan resmi Anda.',
|
|
48
|
+
},
|
|
49
|
+
];
|
|
50
|
+
|
|
51
|
+
const schemas: GsdFlightPlannerLocaleContent['schemas'] = [
|
|
52
|
+
{
|
|
53
|
+
'@context': 'https://schema.org',
|
|
54
|
+
'@type': 'FAQPage',
|
|
55
|
+
mainEntity: faqItems.map((item) => ({
|
|
56
|
+
'@type': 'Question',
|
|
57
|
+
name: item.question,
|
|
58
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
59
|
+
})),
|
|
60
|
+
} as WithContext<FAQPage>,
|
|
61
|
+
{
|
|
62
|
+
'@context': 'https://schema.org',
|
|
63
|
+
'@type': 'HowTo',
|
|
64
|
+
name: title,
|
|
65
|
+
description: description,
|
|
66
|
+
step: howToSteps.map((step, i) => ({
|
|
67
|
+
'@type': 'HowToStep',
|
|
68
|
+
position: i + 1,
|
|
69
|
+
name: step.name,
|
|
70
|
+
text: step.text,
|
|
71
|
+
})),
|
|
72
|
+
} as WithContext<HowTo>,
|
|
73
|
+
{
|
|
74
|
+
'@context': 'https://schema.org',
|
|
75
|
+
'@type': 'SoftwareApplication',
|
|
76
|
+
name: title,
|
|
77
|
+
description: description,
|
|
78
|
+
applicationCategory: 'OtherApplication',
|
|
79
|
+
operatingSystem: 'Web',
|
|
80
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'IDR' },
|
|
81
|
+
} as WithContext<SoftwareApplication>,
|
|
82
|
+
];
|
|
83
|
+
|
|
84
|
+
export const content: GsdFlightPlannerLocaleContent = {
|
|
85
|
+
slug,
|
|
86
|
+
title,
|
|
87
|
+
description,
|
|
88
|
+
ui: {
|
|
89
|
+
configuration: 'Konfigurasi',
|
|
90
|
+
cameraSelection: 'Pemilihan Kamera',
|
|
91
|
+
manualMode: 'Mode Manual',
|
|
92
|
+
sensorConfig: 'Konfigurasi Sensor',
|
|
93
|
+
width: 'Lebar',
|
|
94
|
+
height: 'Tinggi',
|
|
95
|
+
focalLength: 'Panjang Fokus',
|
|
96
|
+
imageResolution: 'Resolusi Gambar',
|
|
97
|
+
w: 'L',
|
|
98
|
+
h: 'T',
|
|
99
|
+
px: 'px',
|
|
100
|
+
altitudeAgl: 'Ketinggian (AGL)',
|
|
101
|
+
overlapSettings: 'Konfigurasi Overlap',
|
|
102
|
+
forward: 'Depan',
|
|
103
|
+
lateral: 'Samping',
|
|
104
|
+
missionArea: 'Area Misi',
|
|
105
|
+
totalAreaToSurvey: 'Total Area Survei',
|
|
106
|
+
hectareHint: '1 ha = 10.000 m²',
|
|
107
|
+
inverseCalc: 'Kalkulasi Terbalik',
|
|
108
|
+
targetGsd: 'Target GSD',
|
|
109
|
+
maxAltitude: 'Ketinggian Maks',
|
|
110
|
+
reset: 'Reset',
|
|
111
|
+
results: 'Hasil',
|
|
112
|
+
gsdResult: 'Jarak Sampel Tanah (GSD)',
|
|
113
|
+
gsdValue: 'GSD',
|
|
114
|
+
gsdUnit: 'cm/px',
|
|
115
|
+
highPrec: 'Presisi Tinggi',
|
|
116
|
+
standard: 'Standar',
|
|
117
|
+
inspection: 'Inspeksi',
|
|
118
|
+
visual: 'Visual',
|
|
119
|
+
coveragePerImage: 'Cakupan per Gambar',
|
|
120
|
+
area: 'Area',
|
|
121
|
+
spacing: 'Jarak',
|
|
122
|
+
flightDir: 'Terbang →',
|
|
123
|
+
missionMetrics: 'Metrik Misi',
|
|
124
|
+
images: 'Gambar',
|
|
125
|
+
shots: 'foto',
|
|
126
|
+
flightLines: 'Garis Terbang',
|
|
127
|
+
lines: 'garis',
|
|
128
|
+
flightTime: 'Waktu Terbang',
|
|
129
|
+
min: 'menit',
|
|
130
|
+
dataVolume: 'Volume Data',
|
|
131
|
+
gb: 'GB',
|
|
132
|
+
copyShareLink: 'Salin Tautan',
|
|
133
|
+
downloadReport: 'Unduh Laporan',
|
|
134
|
+
copiedToClipboard: 'Tersalin!',
|
|
135
|
+
metric: 'Metrik',
|
|
136
|
+
imperial: 'Imperial',
|
|
137
|
+
classHighPrecision: 'Topografi Presisi Tinggi',
|
|
138
|
+
classStandard: 'Pemetaan Standar',
|
|
139
|
+
classInspection: 'Inspektion & Pemantauan',
|
|
140
|
+
classVisual: 'Survei Visual',
|
|
141
|
+
ultraHighResAlert: 'Resolusi ultra-tinggi: Pastikan penyimpanan dan daya proses yang cukup',
|
|
142
|
+
lowOverlapAlert: 'Overlap depan di bawah 60%: Dapat memengaruhi kualitas model 3D',
|
|
143
|
+
largeDatasetAlert: 'Dataset sangat besar: Pertimbangkan untuk membagi menjadi beberapa penerbangan',
|
|
144
|
+
presetDjiMavic3e: 'DJI Mavic 3E',
|
|
145
|
+
presetDjiMatrice300: 'DJI Matrice 300 RTK',
|
|
146
|
+
presetAutelEvoII: 'Autel EVO II',
|
|
147
|
+
presetDjiAir3s: 'DJI Air 3S',
|
|
148
|
+
},
|
|
149
|
+
seo: [
|
|
150
|
+
{
|
|
151
|
+
type: 'title',
|
|
152
|
+
text: 'Perencana Terbang GSD: Kalkulator Fotogrametri Lengkap',
|
|
153
|
+
level: 2,
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
type: 'paragraph',
|
|
157
|
+
html: '<strong>Ground Sample Distance (GSD)</strong> adalah metrik terpenting dalam fotogrametri drone. Kesalahan kalkulasi dapat membuang waktu terbang seharian dan merugikan jutaan rupiah dalam produktivitas yang hilang. Kalkulator ini menghilangkan risiko tersebut.',
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
type: 'title',
|
|
161
|
+
text: 'Mengapa GSD Penting bagi Profesional',
|
|
162
|
+
level: 3,
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
type: 'paragraph',
|
|
166
|
+
html: 'Baik Anda memetakan lahan, membuat model 3D, atau memantau infrastruktur, GSD menentukan tingkat detail yang dapat Anda tangkap. Misi 1 cm/px menangkap detail yang terlewatkan oleh misi 5 cm/px. Namun terbang terlalu rendah menghabiskan baterai dan memperpanjang waktu misi secara tidak perlu.',
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
type: 'title',
|
|
170
|
+
text: 'GSD Berdasarkan Jenis Misi',
|
|
171
|
+
level: 3,
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
type: 'list',
|
|
175
|
+
items: [
|
|
176
|
+
'<strong>Topografi Presisi Tinggi (1-2 cm/px):</strong> Akurasi tingkat topografi untuk bidang tanah, lokasi tambang, e proyek teknik.',
|
|
177
|
+
'<strong>Pemetaan Standar (2-5 cm/px):</strong> Ortomosaik, pemantauan pertanian, e peta tujuan umum.',
|
|
178
|
+
'<strong>Inspeksi dan Pemantauan (5-10 cm/px):</strong> Inspeksi bangunan, peninjauan saluran listrik, e deteksi perubahan.',
|
|
179
|
+
'<strong>Survei Visual (10+ cm/px):</strong> Pengintaian area luas e penilaian visual.',
|
|
180
|
+
],
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
type: 'title',
|
|
184
|
+
text: 'Formula GSD',
|
|
185
|
+
level: 3,
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
type: 'paragraph',
|
|
189
|
+
html: '<code>GSD (cm/px) = (Ketinggian × Lebar Sensor) / (Panjang Fokus × Lebar Gambar) × 100</code><br/>Kalkulator ini menangani matematikanya. Anda fokus pada misi.',
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
type: 'title',
|
|
193
|
+
text: 'Overlap: Mengapa 60-80% adalah Titik Ideal',
|
|
194
|
+
level: 3,
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
type: 'paragraph',
|
|
198
|
+
html: 'Overlap rendah (20-40%) menghemat baterai tetapi berisiko adanya celah dalam cakupan. Overlap tinggi (80%+) menjamin cakupan lengkap tetapi memperpanjang waktu misi. <strong>Rentang 60-80%</strong> adalah standar profesional: ini memastikan rekonstruksi 3D lengkap tanpa redundansi berlebih.',
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
type: 'title',
|
|
202
|
+
text: 'Rencanakan Misi Lebih Baik dengan Data Nyata',
|
|
203
|
+
level: 3,
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
type: 'paragraph',
|
|
207
|
+
html: 'Sebelum setiap penerbangan, gunakan kalkulator ini untuk menentukan: ketinggian tepat untuk GSD yang Anda butuhkan, berapa banyak foto yang Anda perlukan, total waktu misi, e apakah ada risiko motion blur. Dengan data ini, Anda akan menjalankan misi yang presisi e menghindari kesalahan yang mahal.',
|
|
208
|
+
},
|
|
209
|
+
],
|
|
210
|
+
faq: faqItems,
|
|
211
|
+
bibliography,
|
|
212
|
+
howTo: howToSteps,
|
|
213
|
+
schemas,
|
|
214
|
+
};
|
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
import type { GsdFlightPlannerLocaleContent } from '../index';
|
|
2
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
const slug = 'pianificatore-volo-gsd';
|
|
6
|
+
const title = 'Pianificatore di Volo GSD: Calcolatore della Distanza di Campionamento al Suolo';
|
|
7
|
+
const description = 'Calcola la Distanza di Campionamento al Suolo (GSD) per missioni di fotogrammetria. Supporto per DJI, Autel e fotocamere personalizzate. Pianificazione del volo in tempo reale con indicatori di qualità visiva.';
|
|
8
|
+
|
|
9
|
+
const faqItems = [
|
|
10
|
+
{
|
|
11
|
+
question: 'Cos\'è la Distanza di Campionamento al Suolo (GSD)?',
|
|
12
|
+
answer: 'La GSD è la distanza sul terreno rappresentata da un singolo pixel dell\'immagine. Una GSD inferiore significa maggiore risoluzione e dettaglio. Ad esempio, una GSD di 1 cm/px permette di distinguere dettagli fino a 1 centimetro, il che è fondamentale per i rilievi.',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
question: 'Come trovo le specifiche della fotocamera del mio drone?',
|
|
16
|
+
answer: 'Controlla il manuale del tuo drone per le dimensioni del sensore e la lunghezza focale. In alternativa, usa i nostri predefiniti per modelli popolari come il DJI Mavic 3E o l\'Autel EVO II. Per fotocamere personalizzate, misura le dimensioni del sensore dalle specifiche dell\'obiettivo.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
question: 'Di quale GSD ho bisogno per diversi tipi di missione?',
|
|
20
|
+
answer: 'Topografia di alta precisione: 1-2 cm/px. Mappatura standard: 2-5 cm/px. Ispezione e monitoraggio: 5-10 cm/px. Rilievi visivi: 10+ cm/px. Scegli in base ai requisiti di precisione del tuo progetto.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: 'Cos\'è la sovrapposizione delle immagini e perché è importante?',
|
|
24
|
+
answer: 'La sovrapposizione è la percentuale di area che appare in foto consecutive. Un\'elevata sovrapposizione (60-80%) garantisce una copertura completa e migliora la qualità del modello 3D. La sovrapposizione frontale influisce sulla distanza tra le foto; quella laterale sul numero di linee di volo.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: 'Come calcolo l\'altitudine di volo ideale?',
|
|
28
|
+
answer: 'Usa questo calcolatore: GSD desiderata × lunghezza focale ÷ larghezza del sensore = altitudine. Il calcolatore esegue automaticamente il calcolo e mostra l\'altitudine massima di sicurezza per mantenere la precisione desiderata ed evitare l\'effetto mosso.',
|
|
29
|
+
},
|
|
30
|
+
];
|
|
31
|
+
|
|
32
|
+
const howToSteps = [
|
|
33
|
+
{
|
|
34
|
+
name: 'Seleziona o configura la fotocamera',
|
|
35
|
+
text: 'Scegli tra i modelli preconfigurati (DJI Mavic 3E, Autel EVO II, ecc.) o inserisci manualmente le dimensioni del sensore e la lunghezza focale. I predefiniti caricano istantaneamente tutti i parametri.',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
name: 'Imposta l\'altitudine di volo',
|
|
39
|
+
text: 'Usa lo slider dell\'altitudine per regolare l\'altezza dal suolo (AGL). Osserva l\'aggiornamento della GSD in tempo reale per vedere come l\'altitudine influisce sulla risoluzione.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
name: 'Definisci i requisiti di sovrapposizione',
|
|
43
|
+
text: 'Imposta le percentuali di sovrapposizione frontale e laterale. Una maggiore sovrapposizione garantisce una copertura completa ma aumenta il tempo della missione e il numero di immagini.',
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
name: 'Controlla i risultati ed esporta',
|
|
47
|
+
text: 'Verifica la GSD, l\'area di copertura e la classificazione di precisione. Genera un report rapido da allegare al tuo piano di volo ufficiale.',
|
|
48
|
+
},
|
|
49
|
+
];
|
|
50
|
+
|
|
51
|
+
const schemas: GsdFlightPlannerLocaleContent['schemas'] = [
|
|
52
|
+
{
|
|
53
|
+
'@context': 'https://schema.org',
|
|
54
|
+
'@type': 'FAQPage',
|
|
55
|
+
mainEntity: faqItems.map((item) => ({
|
|
56
|
+
'@type': 'Question',
|
|
57
|
+
name: item.question,
|
|
58
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
59
|
+
})),
|
|
60
|
+
} as WithContext<FAQPage>,
|
|
61
|
+
{
|
|
62
|
+
'@context': 'https://schema.org',
|
|
63
|
+
'@type': 'HowTo',
|
|
64
|
+
name: title,
|
|
65
|
+
description: description,
|
|
66
|
+
step: howToSteps.map((step, i) => ({
|
|
67
|
+
'@type': 'HowToStep',
|
|
68
|
+
position: i + 1,
|
|
69
|
+
name: step.name,
|
|
70
|
+
text: step.text,
|
|
71
|
+
})),
|
|
72
|
+
} as WithContext<HowTo>,
|
|
73
|
+
{
|
|
74
|
+
'@context': 'https://schema.org',
|
|
75
|
+
'@type': 'SoftwareApplication',
|
|
76
|
+
name: title,
|
|
77
|
+
description: description,
|
|
78
|
+
applicationCategory: 'OtherApplication',
|
|
79
|
+
operatingSystem: 'Web',
|
|
80
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
81
|
+
} as WithContext<SoftwareApplication>,
|
|
82
|
+
];
|
|
83
|
+
|
|
84
|
+
export const content: GsdFlightPlannerLocaleContent = {
|
|
85
|
+
slug,
|
|
86
|
+
title,
|
|
87
|
+
description,
|
|
88
|
+
ui: {
|
|
89
|
+
configuration: 'Configurazione',
|
|
90
|
+
cameraSelection: 'Selezione Fotocamera',
|
|
91
|
+
manualMode: 'Modalità Manuale',
|
|
92
|
+
sensorConfig: 'Configurazione Sensore',
|
|
93
|
+
width: 'Larghezza',
|
|
94
|
+
height: 'Altezza',
|
|
95
|
+
focalLength: 'Lunghezza Focale',
|
|
96
|
+
imageResolution: 'Risoluzione Immagine',
|
|
97
|
+
w: 'L',
|
|
98
|
+
h: 'A',
|
|
99
|
+
px: 'px',
|
|
100
|
+
altitudeAgl: 'Altitudine (AGL)',
|
|
101
|
+
overlapSettings: 'Configurazione Sovrapposizione',
|
|
102
|
+
forward: 'Frontale',
|
|
103
|
+
lateral: 'Laterale',
|
|
104
|
+
missionArea: 'Area di Missione',
|
|
105
|
+
totalAreaToSurvey: 'Area Totale del Rilievo',
|
|
106
|
+
hectareHint: '1 ha = 10.000 m²',
|
|
107
|
+
inverseCalc: 'Calcolo Inverso',
|
|
108
|
+
targetGsd: 'GSD Obiettivo',
|
|
109
|
+
maxAltitude: 'Altitudine Max',
|
|
110
|
+
reset: 'Reset',
|
|
111
|
+
results: 'Risultati',
|
|
112
|
+
gsdResult: 'Distanza di Campionamento al Suolo',
|
|
113
|
+
gsdValue: 'GSD',
|
|
114
|
+
gsdUnit: 'cm/px',
|
|
115
|
+
highPrec: 'Alta Prec.',
|
|
116
|
+
standard: 'Standard',
|
|
117
|
+
inspection: 'Ispezione',
|
|
118
|
+
visual: 'Visuale',
|
|
119
|
+
coveragePerImage: 'Copertura per Immagine',
|
|
120
|
+
area: 'Area',
|
|
121
|
+
spacing: 'Spaziatura',
|
|
122
|
+
flightDir: 'Volo →',
|
|
123
|
+
missionMetrics: 'Dati di Missione',
|
|
124
|
+
images: 'Immagini',
|
|
125
|
+
shots: 'scatti',
|
|
126
|
+
flightLines: 'Linee di Volo',
|
|
127
|
+
lines: 'linee',
|
|
128
|
+
flightTime: 'Tempo di Volo',
|
|
129
|
+
min: 'min',
|
|
130
|
+
dataVolume: 'Volume Dati',
|
|
131
|
+
gb: 'GB',
|
|
132
|
+
copyShareLink: 'Copia Link',
|
|
133
|
+
downloadReport: 'Scarica Report',
|
|
134
|
+
copiedToClipboard: 'Copiato!',
|
|
135
|
+
metric: 'Metrico',
|
|
136
|
+
imperial: 'Imperiale',
|
|
137
|
+
classHighPrecision: 'Topografia di Alta Precisione',
|
|
138
|
+
classStandard: 'Mappatura Standard',
|
|
139
|
+
classInspection: 'Ispezione e Monitoraggio',
|
|
140
|
+
classVisual: 'Rilievo Visuale',
|
|
141
|
+
ultraHighResAlert: 'Risoluzione ultra-alta: assicuratevi di avere spazio e potenza di calcolo sufficienti',
|
|
142
|
+
lowOverlapAlert: 'Sovrapposizione frontale inferiore al 60%: può influire sulla qualità del modello 3D',
|
|
143
|
+
largeDatasetAlert: 'Set di dati molto grande: valutate di dividerlo in più voli',
|
|
144
|
+
presetDjiMavic3e: 'DJI Mavic 3E',
|
|
145
|
+
presetDjiMatrice300: 'DJI Matrice 300 RTK',
|
|
146
|
+
presetAutelEvoII: 'Autel EVO II',
|
|
147
|
+
presetDjiAir3s: 'DJI Air 3S',
|
|
148
|
+
},
|
|
149
|
+
seo: [
|
|
150
|
+
{
|
|
151
|
+
type: 'title',
|
|
152
|
+
text: 'Pianificatore di Volo GSD: Il Calcolatore Completo per Fotogrammetria',
|
|
153
|
+
level: 2,
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
type: 'paragraph',
|
|
157
|
+
html: 'La <strong>Distanza di Campionamento al Suolo (GSD)</strong> è il parametro più importante nella fotogrammetria con drone. Un errore di calcolo può sprecare un\'intera giornata di volo e costare migliaia di euro in perdita di produttività. Questo calcolatore elimina tale rischio.',
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
type: 'title',
|
|
161
|
+
text: 'Perché la GSD è fondamentale per i professionisti',
|
|
162
|
+
level: 3,
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
type: 'paragraph',
|
|
166
|
+
html: 'Sia che stiate effettuando rilievi di terreni, creando modelli 3D o monitorando infrastrutture, la GSD determina il livello di dettaglio catturato. Una missione a 1 cm/px cattura dettagli che una a 5 cm/px perde. Tuttavia, volare troppo bassi spreca batteria e prolunga inutilmente il tempo della missione.',
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
type: 'title',
|
|
170
|
+
text: 'GSD per tipo di missione',
|
|
171
|
+
level: 3,
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
type: 'list',
|
|
175
|
+
items: [
|
|
176
|
+
'<strong>Topografia di Alta Precisione (1-2 cm/px):</strong> Precisione di grado topografico per parcelle, siti minerari e progetti ingegneristici.',
|
|
177
|
+
'<strong>Mappatura Standard (2-5 cm/px):</strong> Ortomosaici, monitoraggio agricolo e mappe per uso generale.',
|
|
178
|
+
'<strong>Ispezione e Monitoraggio (5-10 cm/px):</strong> Ispezioni di edifici, controllo linee elettriche e rilevamento cambiamenti.',
|
|
179
|
+
'<strong>Rilievi Visuali (10+ cm/px):</strong> Ricognizione di grandi aree e valutazione visiva.',
|
|
180
|
+
],
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
type: 'title',
|
|
184
|
+
text: 'La formula GSD',
|
|
185
|
+
level: 3,
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
type: 'paragraph',
|
|
189
|
+
html: '<code>GSD (cm/px) = (Altitudine × Larghezza Sensore) / (Lunghezza Focale × Larghezza Immagine) × 100</code><br/>Questo calcolatore gestisce la matematica. Voi concentratevi sulla missione.',
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
type: 'title',
|
|
193
|
+
text: 'Sovrapposizione: Perché il 60-80% è il punto ideale',
|
|
194
|
+
level: 3,
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
type: 'paragraph',
|
|
198
|
+
html: 'Una bassa sovrapposizione (20-40%) risparmia batteria ma rischia di lasciare lacune nella copertura. Un\'alta sovrapposizione (80%+) garantisce una copertura completa ma allunga i tempi. Il <strong>range 60-80%</strong> è lo standard professionale: assicura una ricostruzione 3D completa senza eccessiva ridondanza.',
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
type: 'title',
|
|
202
|
+
text: 'Pianificate missioni migliori con dati reali',
|
|
203
|
+
level: 3,
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
type: 'paragraph',
|
|
207
|
+
html: 'Prima di ogni volo, usate questo calcolatore per determinare: l\'esatta altitudine per la GSD richiesta, quante foto serviranno, il tempo totale della missione e se c\'è rischio di mosso. Con questi dati, eseguirete missioni precise ed eviterete errori costosi.',
|
|
208
|
+
},
|
|
209
|
+
],
|
|
210
|
+
faq: faqItems,
|
|
211
|
+
bibliography,
|
|
212
|
+
howTo: howToSteps,
|
|
213
|
+
schemas,
|
|
214
|
+
};
|