@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,238 @@
1
+ import type { DroneFlightTimeLocaleContent } from '../index';
2
+ import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
3
+
4
+ const slug = 'kalkulator-waktu-terbang-drone';
5
+ const title = 'Kalkulator Waktu Terbang Drone untuk Estimasi Autonomi LiPo LiIon';
6
+ const description = 'Hitung berapa lama drone Anda bisa terbang berdasarkan kapasitas mAh dan konsumsi arus. Optimalkan baterai LiPo Anda untuk penerbangan yang aman.';
7
+
8
+ const faqItems = [
9
+ {
10
+ question: 'Mengapa waktu penerbangan aktual lebih rendah dari yang dihitung?',
11
+ answer: 'Kalkulator mengasumsikan konsumsi konstan. Manuver tajam, angin sakal, dan keausan baterai dapat mengurangi waktu penerbangan yang sebenarnya hingga 30%.',
12
+ },
13
+ {
14
+ question: 'Pada tegangan berapa saya harus mendaratkan drone saya?',
15
+ answer: 'Idealnya, mendaratlah saat tegangan turun menjadi 3.5V - 3.6V per sel (saat istirahat). Ini sesuai dengan rekomendasi 20% kapasitas yang tersisa.',
16
+ },
17
+ {
18
+ question: 'Apakah baterai LiPo atau Li-Ion lebih baik untuk drone?',
19
+ answer: 'LiPo menawarkan tenaga seketika yang tinggi (ideal untuk balapan dan akrobatik). Sel Li-Ion memiliki daya tahan lebih lama tetapi output daya lebih rendah (ideal untuk penerbangan yang panjang dan stabil).',
20
+ },
21
+ {
22
+ question: 'Bagaimana jumlah sel (S) memengaruhi waktu penerbangan?',
23
+ answer: 'Lebih banyak sel meningkatkan tegangan dan tenaga, tetapi juga menambah berat. Jika motor dioptimalkan untuk tegangan tersebut, mereka bisa menjadi lebih efisien, namun jumlah sel saja tidak menjamin waktu yang lebih lama.',
24
+ },
25
+ ];
26
+
27
+ const howToSteps = [
28
+ {
29
+ name: 'Identifikasi Kapasitas',
30
+ text: 'Periksa label baterai Anda dan cari nilai mAh (misalnya, 1500, 2200, 4500).',
31
+ },
32
+ {
33
+ name: 'Perkirakan Konsumsi Arus',
34
+ text: 'Masukkan rata-rata ampere yang dikonsumsi drone Anda. Anda dapat menemukannya di telemetri OSD Anda setelah uji penerbangan.',
35
+ },
36
+ {
37
+ name: 'Sesuaikan Batas Keamanan',
38
+ text: 'Kami menyarankan untuk menyisakan 20% (ditetapkan ke 80%) untuk melindungi baterai dan memberikan margin pendaratan.',
39
+ },
40
+ {
41
+ name: 'Dapatkan Hasil',
42
+ text: 'Lihat waktu pasti dalam menit dan detik di tempat Anda dapat dengan aman berada di udara.',
43
+ },
44
+ ];
45
+
46
+ const schemas: DroneFlightTimeLocaleContent['schemas'] = [
47
+ {
48
+ '@context': 'https://schema.org',
49
+ '@type': 'FAQPage',
50
+ mainEntity: faqItems.map((item) => ({
51
+ '@type': 'Question',
52
+ name: item.question,
53
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
54
+ })),
55
+ } as WithContext<FAQPage>,
56
+ {
57
+ '@context': 'https://schema.org',
58
+ '@type': 'HowTo',
59
+ name: title,
60
+ description: description,
61
+ step: howToSteps.map((step, i) => ({
62
+ '@type': 'HowToStep',
63
+ position: i + 1,
64
+ name: step.name,
65
+ text: step.text,
66
+ })),
67
+ } as WithContext<HowTo>,
68
+ {
69
+ '@context': 'https://schema.org',
70
+ '@type': 'SoftwareApplication',
71
+ name: title,
72
+ description: description,
73
+ applicationCategory: 'OtherApplication',
74
+ operatingSystem: 'Web',
75
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
76
+ } as WithContext<SoftwareApplication>,
77
+ ];
78
+
79
+ export const content: DroneFlightTimeLocaleContent = {
80
+ slug,
81
+ title,
82
+ description,
83
+ faqTitle: 'Pertanyaan yang Sering Diajukan',
84
+ bibliographyTitle: 'Referensi Bibliografi',
85
+ ui: {
86
+ faqTitle: 'Pertanyaan yang Sering Diajukan',
87
+ bibliographyTitle: 'Referensi Bibliografi',
88
+ batterySpecs: 'Spesifikasi Baterai',
89
+ capacity: 'Kapasitas',
90
+ voltage: 'Tegangan (Sel S)',
91
+ safetyMargin: 'Batas Keamanan',
92
+ landingHint: 'Mendarat di 3.5V - 3.7V per sel.',
93
+ consumptionDynamics: 'Dinamika Konsumsi',
94
+ averageConsumption: 'Rata-rata Konsumsi Arus',
95
+ powerWatts: 'Daya (Watt)',
96
+ efficiencyHint: 'Saat Ampere berubah, Watt akan dihitung ulang berdasarkan tegangan S.',
97
+ estimatedEfficiency: 'Estimasi Efisiensi',
98
+ typicalEfficiencyHint: 'Umumnya: 4-6 (Balapan), 8-12 (Sinematik/Jarak Jauh).',
99
+ safeFlight: 'Penerbangan Aman',
100
+ totalEnergy: 'Total Energi',
101
+ theoreticalTime: 'Waktu Teoritis (0%)',
102
+ co2Footprint: 'Jejak Karbon CO2',
103
+ autonomyChart: 'Grafik Otonomi',
104
+ chartSubtitle: 'Ampere (A) vs. Waktu (menit)',
105
+ chartLabel: 'Menit',
106
+ },
107
+ seo: [
108
+ {
109
+ type: 'title',
110
+ text: 'Kalkulator Waktu Terbang Drone: Panduan Lengkap untuk Otonomi',
111
+ level: 2,
112
+ },
113
+ {
114
+ type: 'paragraph',
115
+ html: 'Otonomi mungkin adalah faktor paling penting dalam desain dan pengoperasian pesawat nirawak apa pun. Baik Anda seorang pilot drone balap FPV, fotografer udara profesional, atau penggemar jarak jauh, mengetahui dengan tepat berapa lama peralatan Anda dapat bertahan di udara sangat penting untuk keselamatan dan keberhasilan misi. <strong>Kalkulator waktu terbang</strong> kami menggunakan variabel dasar kapasitas baterai dan konsumsi arus untuk memberikan perkiraan yang realistis dan aman.',
116
+ },
117
+ {
118
+ type: 'title',
119
+ text: 'Kapasitas Baterai: Penjelasan mAh',
120
+ level: 3,
121
+ },
122
+ {
123
+ type: 'paragraph',
124
+ html: 'Kapasitas baterai biasanya diukur dalam miliampere-jam (mAh). Angka ini menunjukkan berapa banyak muatan listrik yang dapat disimpan baterai. Misalnya, baterai 1500 mAh secara teoritis dapat memasok 1500 miliampere selama satu jam penuh. Di dunia drone, di mana konsumsi arus sangat tinggi, kita biasanya berbicara dalam Ampere (A). 1000 mAh tepatnya sama dengan 1 Ah (Ampere-jam).',
125
+ },
126
+ {
127
+ type: 'paragraph',
128
+ html: 'Namun, kapasitas mentah bukan satu-satunya faktor. Tegangan (ditentukan oleh jumlah sel atau \'S\') secara langsung memengaruhi daya total (Watt), tetapi untuk menghitung waktu berdasarkan konsumsi motor, rasio Ah/Ampere adalah metrik yang paling langsung digunakan oleh mekanik penerbangan.',
129
+ },
130
+ {
131
+ type: 'title',
132
+ text: 'Konsumsi Arus: Ampere dalam Penerbangan',
133
+ level: 3,
134
+ },
135
+ {
136
+ type: 'paragraph',
137
+ html: 'Konsumsi motor adalah variabel yang paling berfluktuasi selama penerbangan. Menjaga drone melayang (hover) tidak sama dengan melakukan manuver akrobatik yang agresif. Setiap kombinasi motor dan baling-baling memiliki kurva efisiensi. Saat Anda memberikan tenaga penuh, ampere melonjak, secara drastis mengurangi masa pakai baterai.',
138
+ },
139
+ {
140
+ type: 'list',
141
+ items: [
142
+ 'Penerbangan Melayang (Hovering): Konsumsi minimum dan konstan, ideal untuk fotografi.',
143
+ 'Penerbangan Penjelajahan (Cruising): Konsumsi sedikit meningkat karena hambatan aerodinamis.',
144
+ 'Penerbangan Agresif/FPV: Puncak arus dapat melipatgandakan konsumsi rata-rata dalam hitungan detik.',
145
+ 'Berat Drone: Setiap gram tambahan membutuhkan RPM motor yang lebih tinggi untuk menghasilkan daya angkat, yang meningkatkan ampere.',
146
+ ],
147
+ },
148
+ {
149
+ type: 'title',
150
+ text: 'Aturan Keamanan 80 Persen: Melindungi Bahan Kimia LiPo',
151
+ level: 3,
152
+ },
153
+ {
154
+ type: 'paragraph',
155
+ html: 'Melepaskan baterai LiPo (Lithium Polymer) hingga kapasitas 0% adalah cara tercepat untuk menghancurkannya dan, lebih parah lagi, menyebabkan kecelakaan. Secara kimia, sel mengalami kerusakan permanen jika tegangannya turun di bawah ambang batas kritis (biasanya 3.0V - 3.2V per sel).',
156
+ },
157
+ {
158
+ type: 'paragraph',
159
+ html: 'Oleh karena itu, kami selalu menerapkan <strong>aturan batas keamanan</strong>. Kalkulator kami memungkinkan Anda menyesuaikan nilai ini, tetapi disarankan untuk mendarat ketika tersisa 20% daya. Ini tidak hanya memperpanjang umur baterai mahal Anda hingga ratusan siklus, tetapi juga menjamin cadangan daya vital jika terjadi hembusan angin tak terduga atau jika Anda harus membatalkan pendaratan dan mencoba lagi.',
160
+ },
161
+ {
162
+ type: 'tip',
163
+ html: 'Baterai drone sangat sensitif terhadap dingin. Di musim dingin, hambatan internal LiPo meningkat, menyebabkan penurunan tegangan yang lebih cepat. Selalu hangatkan baterai Anda sebelum lepas landas jika suhu lingkungan di bawah 15 derajat Celcius.',
164
+ },
165
+ {
166
+ type: 'title',
167
+ text: 'Rumus Penerbangan Matematika',
168
+ level: 3,
169
+ },
170
+ {
171
+ type: 'paragraph',
172
+ html: 'Meskipun alat kami melakukan pekerjaan berat untuk Anda, ada baiknya mengetahui logika di balik perhitungan. Rumus dasarnya adalah:',
173
+ },
174
+ {
175
+ type: 'paragraph',
176
+ html: '<strong>Waktu (mnt) = ((Kapasitas mAh / 1000) * Faktor Keamanan) / Konsumsi Ampere * 60</strong>',
177
+ },
178
+ {
179
+ type: 'paragraph',
180
+ html: 'Misalnya, jika Anda memiliki baterai 2200 mAh, ingin mendarat pada sisa 20% (faktor keamanan 0,8), dan konsumsi rata-rata drone Anda adalah 15 Ampere: (2,2 * 0,8) / 15 * 60 = 7,04 menit waktu terbang yang aman.',
181
+ },
182
+ {
183
+ type: 'title',
184
+ text: 'Optimalisasi Berat dan Efisiensi',
185
+ level: 3,
186
+ },
187
+ {
188
+ type: 'paragraph',
189
+ html: 'Ada titik hasil yang semakin berkurang (diminishing returns) saat menambahkan baterai yang lebih besar. Menggandakan kapasitas baterai tidak menggandakan waktu terbang, karena baterai itu sendiri menambah berat. Berat ekstra itu mengharuskan motor berputar lebih cepat dan karena itu mengkonsumsi lebih banyak arus. Pada titik tertentu, berat tambahan mengkonsumsi lebih banyak energi daripada yang disumbangkannya, sehingga mengurangi efisiensi sistem secara keseluruhan.',
190
+ },
191
+ {
192
+ type: 'paragraph',
193
+ html: 'Pilot berpengalaman mencari keseimbangan sempurna antara <em>Disc Loading</em> (rasio berat terhadap area baling-baling) dan kapasitas baterai untuk memaksimalkan apa yang kami sebut "waktu misi yang berguna".',
194
+ },
195
+ {
196
+ type: 'title',
197
+ text: 'Perbedaan Antar Jenis Drone',
198
+ level: 3,
199
+ },
200
+ {
201
+ type: 'paragraph',
202
+ html: '<strong>Drone Mikro (Whoops):</strong> Hanya mengkonsumsi 2-5 Ampere, tetapi baterainya sekitar 300-500 mAh. Waktunya biasanya singkat (3-4 mnt) karena inersia yang rendah dan putaran yang tinggi.',
203
+ },
204
+ {
205
+ type: 'paragraph',
206
+ html: '<strong>Drone Balap 5":</strong> Konsumsi brutal selama balapan (hingga puncak 120A), yang menghabiskan baterai 1300 mAh hanya dalam 2 menit adrenalin murni.',
207
+ },
208
+ {
209
+ type: 'paragraph',
210
+ html: '<strong>Drone Jarak Jauh (Long Range):</strong> Dioptimalkan untuk efisiensi. Mereka sering menggunakan sel Lithium-Ion (Li-Ion) yang memiliki kepadatan energi lebih tinggi daripada LiPo, memungkinkan penerbangan 30 hingga 60 menit dengan konsumsi arus yang sangat rendah.',
211
+ },
212
+ {
213
+ type: 'tip',
214
+ html: 'Beralih ke baling-baling dengan jarak (pitch) yang lebih rendah dapat meningkatkan waktu terbang Anda dengan mengorbankan kecepatan maksimum dan responsivitas. Ini adalah cara termurah dan paling efektif untuk mendapatkan otonomi 10-15% lebih banyak.',
215
+ },
216
+ {
217
+ type: 'title',
218
+ text: 'Pemeliharaan dan Penyimpanan',
219
+ level: 3,
220
+ },
221
+ {
222
+ type: 'paragraph',
223
+ html: 'Agar perhitungan alat ini akurat, baterai Anda harus dalam kondisi baik. Baterai dengan resistansi internal yang tinggi akan menjadi terlalu panas dan "berbohong" tentang kapasitas aslinya. Selalu simpan baterai Anda pada tegangan penyimpanan (3.8V-3.85V per sel) jika Anda tidak akan terbang selama lebih dari 48 jam.',
224
+ },
225
+ {
226
+ type: 'paragraph',
227
+ html: 'Kesimpulannya, manajemen energi adalah seni menyeimbangkan fisika, kimia, dan matematika. Gunakan kalkulator kami secara teratur untuk merencanakan sesi penerbangan Anda, dan jangan pernah lupa bahwa di udara, waktu adalah sumber daya Anda yang paling berharga. Selamat terbang dan semoga pendaratan Anda aman!',
228
+ },
229
+ ],
230
+ faq: faqItems,
231
+ bibliography: [
232
+ { name: 'EASA - Regulasi Drone', url: 'https://www.easa.europa.eu/en/domains/civil-drones' },
233
+ { name: 'ArduPilot Wiki', url: 'https://ardupilot.org/copter/' },
234
+ { name: 'Battery University', url: 'https://batteryuniversity.com/' },
235
+ ],
236
+ howTo: howToSteps,
237
+ schemas,
238
+ };
@@ -0,0 +1,238 @@
1
+ import type { DroneFlightTimeLocaleContent } from '../index';
2
+ import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
3
+
4
+ const slug = 'calcolatore-tempo-volo-drone';
5
+ const title = 'Calcolatore Tempo di Volo Drone per Stima Autonomia LiPo LiIon';
6
+ const description = 'Calcola quanto tempo può volare il tuo drone in base alla capacità mAh e al consumo. Ottimizza le tue batterie LiPo per voli sicuri e massima durata.';
7
+
8
+ const faqItems = [
9
+ {
10
+ question: 'Perché il tempo reale è inferiore a quello calcolato?',
11
+ answer: 'Il calcolatore stima un consumo costante. Manovre brusche, vento contrario e usura della batteria possono ridurre il tempo reale fino al 30%.',
12
+ },
13
+ {
14
+ question: 'A quale voltaggio dovrei far atterrare il mio drone?',
15
+ answer: 'L\'ideale è atterrare quando il voltaggio scende a 3.5V - 3.6V per cella (a riposo). Questo equivale approssimativamente al 20% di capacità residua consigliata.',
16
+ },
17
+ {
18
+ question: 'Sono migliori le batterie LiPo o Li-Ion per i droni?',
19
+ answer: 'Le LiPo offrono molta potenza istantanea (ideale per corse e acrobazie). Le Li-Ion hanno più durata ma meno potenza (ideale per voli lunghi e tranquilli).',
20
+ },
21
+ {
22
+ question: 'Come influisce il numero di celle (S) sul tempo di volo?',
23
+ answer: 'Più celle aumentano il voltaggio e la potenza, ma anche il peso. Se i motori sono ottimizzati per quel voltaggio, possono essere più efficienti, ma il solo numero di celle non garantisce più tempo.',
24
+ },
25
+ ];
26
+
27
+ const howToSteps = [
28
+ {
29
+ name: 'Identifica la capacità',
30
+ text: 'Guarda l\'etichetta della tua batteria e cerca il valore in mAh (es. 1500, 2200, 4500).',
31
+ },
32
+ {
33
+ name: 'Stima il consumo',
34
+ text: 'Inserisci l\'amperaggio medio che consuma il tuo drone. Puoi vederlo nella telemetria OSD dopo un volo di prova.',
35
+ },
36
+ {
37
+ name: 'Regola il margine',
38
+ text: 'Consigliamo di lasciare il 20% (impostare all\'80%) per proteggere la batteria e avere margine di atterraggio.',
39
+ },
40
+ {
41
+ name: 'Ottieni il risultato',
42
+ text: 'Visualizza il tempo esatto in minuti e secondi che puoi rimanere in aria in sicurezza.',
43
+ },
44
+ ];
45
+
46
+ const schemas: DroneFlightTimeLocaleContent['schemas'] = [
47
+ {
48
+ '@context': 'https://schema.org',
49
+ '@type': 'FAQPage',
50
+ mainEntity: faqItems.map((item) => ({
51
+ '@type': 'Question',
52
+ name: item.question,
53
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
54
+ })),
55
+ } as WithContext<FAQPage>,
56
+ {
57
+ '@context': 'https://schema.org',
58
+ '@type': 'HowTo',
59
+ name: title,
60
+ description: description,
61
+ step: howToSteps.map((step, i) => ({
62
+ '@type': 'HowToStep',
63
+ position: i + 1,
64
+ name: step.name,
65
+ text: step.text,
66
+ })),
67
+ } as WithContext<HowTo>,
68
+ {
69
+ '@context': 'https://schema.org',
70
+ '@type': 'SoftwareApplication',
71
+ name: title,
72
+ description: description,
73
+ applicationCategory: 'OtherApplication',
74
+ operatingSystem: 'Web',
75
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
76
+ } as WithContext<SoftwareApplication>,
77
+ ];
78
+
79
+ export const content: DroneFlightTimeLocaleContent = {
80
+ slug,
81
+ title,
82
+ description,
83
+ faqTitle: 'Domande Frequenti',
84
+ bibliographyTitle: 'Riferimenti Bibliografici',
85
+ ui: {
86
+ faqTitle: 'Domande Frequenti',
87
+ bibliographyTitle: 'Riferimenti Bibliografici',
88
+ batterySpecs: 'Specifiche Batteria',
89
+ capacity: 'Capacità',
90
+ voltage: 'Voltaggio (Celle S)',
91
+ safetyMargin: 'Margine di Sicurezza',
92
+ landingHint: 'Atterrare a 3.5V - 3.7V per cella.',
93
+ consumptionDynamics: 'Dinamica di Consumo',
94
+ averageConsumption: 'Consumo Medio',
95
+ powerWatts: 'Potenza (Watt)',
96
+ efficiencyHint: 'Cambiando gli Ampere, i Watt vengono ricalcolati in base al voltaggio S.',
97
+ estimatedEfficiency: 'Efficienza Stimata',
98
+ typicalEfficiencyHint: 'Tipico: 4-6 (Racing), 8-12 (Cinematic/Long Range).',
99
+ safeFlight: 'Volo Sicuro',
100
+ totalEnergy: 'Energia Totale',
101
+ theoreticalTime: 'Tempo Teorico (0%)',
102
+ co2Footprint: 'Impronta CO2',
103
+ autonomyChart: 'Grafico Autonomia',
104
+ chartSubtitle: 'Ampere (A) vs. Tempo (min)',
105
+ chartLabel: 'Minuti',
106
+ },
107
+ seo: [
108
+ {
109
+ type: 'title',
110
+ text: 'Calcolatore di Tempo di Volo per Droni: Guida Completa all\'Autonomia',
111
+ level: 2,
112
+ },
113
+ {
114
+ type: 'paragraph',
115
+ html: 'L\'autonomia è, probabilmente, il fattore più critico nella progettazione e nel funzionamento di qualsiasi aeromobile a pilotaggio remoto. Che tu sia un pilota di droni FPV da corsa, un professionista della fotografia aerea o un appassionato di modelli a lungo raggio, sapere con precisione quanto tempo il tuo equipaggiamento può rimanere in aria è vitale per la sicurezza e il successo della missione. Il nostro <strong>calcolatore di tempo di volo</strong> utilizza le variabili fondamentali della capacità della batteria e dell\'assorbimento di corrente per offrirti una stima realistica e sicura.',
116
+ },
117
+ {
118
+ type: 'title',
119
+ text: 'Capacità della Batteria: mAh Spiegati',
120
+ level: 3,
121
+ },
122
+ {
123
+ type: 'paragraph',
124
+ html: 'La capacità di una batteria viene solitamente misurata in milliampere-ora (mAh). Questa cifra ci indica quanta carica elettrica è in grado di immagazzinare la batteria. Ad esempio, una batteria da 1500 mAh può teoricamente fornire 1500 milliampere per un\'ora intera. Nel mondo dei droni, dove i consumi sono estremamente elevati, di solito parliamo di Ampere (A). 1000 mAh equivale esattamente a 1 Ah (Ampere-ora).',
125
+ },
126
+ {
127
+ type: 'paragraph',
128
+ html: 'Tuttavia, la capacità lorda non è l\'unico fattore. Il voltaggio (determinato dal numero di celle o \'S\') influenza direttamente la potenza totale (Watt), ma per il calcolo del tempo basato sul consumo dei motori, il rapporto Ah/Ampere è la metrica più diretta e utilizzata dagli ingegneri di volo.',
129
+ },
130
+ {
131
+ type: 'title',
132
+ text: 'Consumo di Corrente: Amperaggio in Volo',
133
+ level: 3,
134
+ },
135
+ {
136
+ type: 'paragraph',
137
+ html: 'Il consumo dei motori è la variabile che fluttua maggiormente durante un volo. Mantenere un drone in hovering non è lo stesso che eseguire manovre acrobatiche aggressive. Ogni combinazione di motore ed elica ha una curva di efficienza. Quando acceleri al massimo, l\'amperaggio schizza verso l\'alto, riducendo drasticamente la durata della batteria.',
138
+ },
139
+ {
140
+ type: 'list',
141
+ items: [
142
+ 'Volo in Hovering: Il consumo è minimo e costante, ideale per la fotografia.',
143
+ 'Volo di Crociera: Consumo leggermente aumentato a causa della resistenza aerodinamica.',
144
+ 'Volo Aggressivo/FPV: I picchi di corrente possono triplicare il consumo medio in pochi secondi.',
145
+ 'Peso del Drone: Ogni grammo aggiuntivo richiede più giri motore per generare spinta, aumentando l\'amperaggio.',
146
+ ],
147
+ },
148
+ {
149
+ type: 'title',
150
+ text: 'Regola di Sicurezza dell\'80%: Proteggere la Chimica LiPo',
151
+ level: 3,
152
+ },
153
+ {
154
+ type: 'paragraph',
155
+ html: 'Scaricare una batteria LiPo (Polimeri di Litio) fino allo 0% della sua capacità è il modo più rapido per distruggerla e, peggio ancora, per provocare un incidente. Chimicamente, le celle subiscono danni irreversibili se il loro voltaggio scende al di sotto di una soglia critica (normalmente 3.0V - 3.2V per cella).',
156
+ },
157
+ {
158
+ type: 'paragraph',
159
+ html: 'Per questo motivo, applichiamo sempre una <strong>regola del margine di sicurezza</strong>. Il nostro calcolatore permette di regolare questo valore, ma si consiglia di atterrare quando rimane ancora il 20% della carica. Questo non solo prolunga la durata delle tue costose batterie per centinaia di cicli, ma ti garantisce una riserva di potenza vitale in caso di raffiche di vento inaspettate o se devi interrompere l\'atterraggio e riprovare.',
160
+ },
161
+ {
162
+ type: 'tip',
163
+ html: 'Le batterie dei droni sono molto sensibili al freddo. In inverno, la resistenza interna della LiPo aumenta, causando un calo di voltaggio più rapido. Riscalda sempre le tue batterie prima di decollare se la temperatura ambiente è inferiore ai 15 gradi.',
164
+ },
165
+ {
166
+ type: 'title',
167
+ text: 'Formula Matematica del Volo',
168
+ level: 3,
169
+ },
170
+ {
171
+ type: 'paragraph',
172
+ html: 'Sebbene il nostro strumento faccia il lavoro pesante per te, è interessante conoscere la logica dietro il calcolo. La formula base è:',
173
+ },
174
+ {
175
+ type: 'paragraph',
176
+ html: '<strong>Tempo (min) = ((Capacità mAh / 1000) * Fattore di Sicurezza) / Consumo Ampere * 60</strong>',
177
+ },
178
+ {
179
+ type: 'paragraph',
180
+ html: 'Ad esempio, se hai una batteria da 2200 mAh, vuoi atterrare al 20% (sicurezza 0.8) e il tuo drone consuma una media di 15 Ampere, il calcolo sarebbe: (2.2 * 0.8) / 15 * 60 = 7.04 minuti di volo sicuro.',
181
+ },
182
+ {
183
+ type: 'title',
184
+ text: 'Ottimizzazione del Peso ed Efficienza',
185
+ level: 3,
186
+ },
187
+ {
188
+ type: 'paragraph',
189
+ html: 'Esiste un punto di rendimento decrescente aggiungendo batterie più grandi. Raddoppiare la capacità della batteria non raddoppia il tempo di volo, poiché la batteria stessa aggiunge peso. Quel peso extra richiede che i motori girino più velocemente e, quindi, consumino più corrente. A un certo punto, il peso aggiuntivo consuma più energia di quella che apporta, riducendo l\'efficienza generale del sistema.',
190
+ },
191
+ {
192
+ type: 'paragraph',
193
+ html: 'I piloti esperti cercano il perfetto equilibrio tra <em>Disc Loading</em> (carico del disco delle eliche) e capacità della batteria per massimizzare quello che chiamiamo "tempo di missione utile".',
194
+ },
195
+ {
196
+ type: 'title',
197
+ text: 'Differenze tra Tipi di Droni',
198
+ level: 3,
199
+ },
200
+ {
201
+ type: 'paragraph',
202
+ html: '<strong>Micro Dron (Whoops):</strong> Consumano appena 2-5 Ampere, ma le loro batterie sono da 300-500 mAh. Il tempo è solitamente breve (3-4 min) a causa della bassa inerzia e dell\'alta rotazione.',
203
+ },
204
+ {
205
+ type: 'paragraph',
206
+ html: '<strong>Droni da Corsa 5":</strong> Consumi brutali in gara (fino a 120A nei picchi), esaurendo una batteria da 1300 mAh in appena 2 minuti di pura adrenalina.',
207
+ },
208
+ {
209
+ type: 'paragraph',
210
+ html: '<strong>Droni Long Range:</strong> Ottimizzati per il GPS e il volo efficiente. Usano celle agli ioni di litio (Li-Ion) che hanno una densità energetica maggiore rispetto alle LiPo, consentendo voli da 30 a 60 minuti con amperaggi molto contenuti.',
211
+ },
212
+ {
213
+ type: 'tip',
214
+ html: 'Passare a eliche con meno passo (pitch) può aumentare il tempo di volo a scapito della velocità massima e della risposta. È la regolazione più economica ed efficace per guadagnare il 10-15% di autonomia.',
215
+ },
216
+ {
217
+ type: 'title',
218
+ text: 'Manutenzione e Conservazione',
219
+ level: 3,
220
+ },
221
+ {
222
+ type: 'paragraph',
223
+ html: 'Affinché i calcoli di questo strumento siano accurati, le tue batterie devono essere in buono stato. Una batteria con alta resistenza interna si scalderà eccessivamente e "mentirà" sulla sua capacità reale. Conserva sempre le tue batterie al voltaggio di stoccaggio (3.8V-3.85V per cella) se non volerai per più di 48 ore.',
224
+ },
225
+ {
226
+ type: 'paragraph',
227
+ html: 'In conclusione, la gestione dell\'energia è l\'arte di bilanciare fisica, chimica e matematica. Usa il nostro calcolatore regolarmente per pianificare le tue sessioni di volo e non dimenticare mai che in aria, il tempo è la risorsa più preziosa. Buoni voli e atterraggi sicuri!',
228
+ },
229
+ ],
230
+ faq: faqItems,
231
+ bibliography: [
232
+ { name: 'EASA - Drone Regulations', url: 'https://www.easa.europa.eu/en/domains/civil-drones' },
233
+ { name: 'ArduPilot Wiki', url: 'https://ardupilot.org/copter/' },
234
+ { name: 'Battery University', url: 'https://batteryuniversity.com/' },
235
+ ],
236
+ howTo: howToSteps,
237
+ schemas,
238
+ };