@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,239 @@
1
+ import type { DroneFlightTimeLocaleContent } from '../index';
2
+ import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
3
+
4
+ const slug = 'drone-vliegtijd-calculator';
5
+ const title = 'Drone Vliegtijd Calculator voor LiPo LiIon Autonomie Schatting';
6
+ const description = 'Bereken hoe lang uw drone kan vliegen op basis van mAh-capaciteit und stroomverbruik. Optimaliseer uw LiPo-batterijen voor veilige vluchten.';
7
+
8
+ const faqItems = [
9
+ {
10
+ question: 'Why is actual flight time lower than calculated?',
11
+ answer: 'The calculator assumes constant consumption. Sharp maneuvers, headwinds, and battery wear can reduce actual flight time by up to 30%.',
12
+ },
13
+ {
14
+ question: 'At what voltage should I land my drone?',
15
+ answer: 'Ideally, land when the voltage drops to 3.5V - 3.6V per cell (at rest). This corresponds to the recommended 20% remaining capacity.',
16
+ },
17
+ {
18
+ question: 'Are LiPo or Li-Ion batteries better for drones?',
19
+ answer: 'LiPos offer high instantaneous power (ideal for racing and acrobatics). Li-Ion cells have longer endurance but lower power output (ideal for long, steady flights).',
20
+ },
21
+ {
22
+ question: 'How does the cell count (S) affect flight time?',
23
+ answer: 'More cells increase voltage and power, but also weight. If motors are optimized for that voltage, they can be more efficient, but cell count alone does not guarantee more time.',
24
+ },
25
+ ];
26
+
27
+ const howToSteps = [
28
+ {
29
+ name: 'Identify Capacity',
30
+ text: 'Check your battery label and look for the mAh value (e.g., 1500, 2200, 4500).',
31
+ },
32
+ {
33
+ name: 'Estimate Current Draw',
34
+ text: 'Enter the average amperage your drone consumes. You can find this in your OSD telemetry after a test flight.',
35
+ },
36
+ {
37
+ name: 'Adjust Safety Margin',
38
+ text: 'We recommend leaving 20% (set to 80%) to protect the battery and provide a landing buffer.',
39
+ },
40
+ {
41
+ name: 'Get the Result',
42
+ text: 'View the exact time in minutes and seconds that you can safely stay in the air.',
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
+
80
+ export const content: DroneFlightTimeLocaleContent = {
81
+ slug,
82
+ title,
83
+ description,
84
+ faqTitle: 'Veelgestelde Vragen',
85
+ bibliographyTitle: 'Bibliografische Referenties',
86
+ ui: {
87
+ faqTitle: 'Veelgestelde Vragen',
88
+ bibliographyTitle: 'Bibliografische Referenties',
89
+ batterySpecs: 'Batterijspecificaties',
90
+ capacity: 'Capaciteit',
91
+ voltage: 'Voltage (S-cellen)',
92
+ safetyMargin: 'Veiligheidsmarge',
93
+ landingHint: 'Landen bij 3,5V - 3,7V per cel.',
94
+ consumptionDynamics: 'Verbruiksdynamiek',
95
+ averageConsumption: 'Gemiddeld Verbruik',
96
+ powerWatts: 'Vermogen (Watt)',
97
+ efficiencyHint: 'Bij het wijzigen van Amps worden Watts herberekend op basis van S-voltage.',
98
+ estimatedEfficiency: 'Geschatte Efficiëntie',
99
+ typicalEfficiencyHint: 'Typisch: 4-6 (Racing), 8-12 (Cinematic/Long Range).',
100
+ safeFlight: 'Veilige Vlucht',
101
+ totalEnergy: 'Totale Energie',
102
+ theoreticalTime: 'Theoretische Tijd (0%)',
103
+ co2Footprint: 'CO2-voetafdruk',
104
+ autonomyChart: 'Uithoudingsgrafiek',
105
+ chartSubtitle: 'Amps (A) vs. Tijd (min)',
106
+ chartLabel: 'Minuten',
107
+ },
108
+ seo: [
109
+ {
110
+ type: 'title',
111
+ text: 'Drone Vliegtijd Calculator: Een Volledige Gids voor Autonomie',
112
+ level: 2,
113
+ },
114
+ {
115
+ type: 'paragraph',
116
+ html: 'Uithoudingsvermogen is waarschijnlijk de meest kritische factor bij het ontwerp en de bediening van elk onbemand luchtvaartuig. Of u nu een FPV-racedronepiloot, een professionele luchtfotograaf of een liefhebber van lange afstanden bent, precies weten hoe lang uw apparatuur in de lucht kan blijven is van vitaal belang voor de veiligheid en het succes van de missie. Onze <strong>vliegtijdcalculator</strong> maakt gebruik van de fundamentele variabelen van batterijcapaciteit en stroomverbruik om u een realistische en veilige schatting te geven.',
117
+ },
118
+ {
119
+ type: 'title',
120
+ text: 'Batterijcapaciteit: mAh Uitgelegd',
121
+ level: 3,
122
+ },
123
+ {
124
+ type: 'paragraph',
125
+ html: 'De capaciteit van een batterij wordt doorgaans gemeten in milliampère-uur (mAh). Dit cijfer geeft aan hoeveel elektrische lading de batterij kan opslaan. Een batterij van 1500 mAh kan bijvoorbeeld theoretisch gedurende een heel uur 1500 milliampère leveren. In de dronewereld, waar het stroomverbruik extreem hoog is, spreken we meestal over Amps (A). 1000 mAh is precies 1 Ah (Ampère-uur).',
126
+ },
127
+ {
128
+ type: 'paragraph',
129
+ html: 'De bruto capaciteit is echter niet de enige factor. Het voltage (bepaald door het aantal cellen of \'S\') beïnvloedt direct het totale vermogen (Watts), maar voor de berekening van de tijd op basis van het motorverbruik is de verhouding Ah/Amps de meest directe statistiek die door vluchtingenieur wordt gebruikt.',
130
+ },
131
+ {
132
+ type: 'title',
133
+ text: 'Stroomverbruik: Amperage in de Vlucht',
134
+ level: 3,
135
+ },
136
+ {
137
+ type: 'paragraph',
138
+ html: 'Motorverbruik is de meest fluctuerende variabele tijdens de vlucht. Een drone stationair laten zweven (hover) is niet hetzelfde als agressieve acrobatische manoeuvres uitvoeren. Elke motor- en propellercombinatie heeft een efficiëntiecurve. Wanneer u vol gas geeft, schiet het ampèrebereik omhoog, wat de levensduur van de batterij drastisch verkort.',
139
+ },
140
+ {
141
+ type: 'list',
142
+ items: [
143
+ 'Hoveren: Het verbruik is minimaal en constant, ideaal voor fotografie.',
144
+ 'Cruisen: Iets verhoogd verbruik door aerodynamische weerstand.',
145
+ 'Agressieve/FPV-vlucht: Stroompieken kunnen het gemiddelde verbruik in enkele seconden verdrievoudigen.',
146
+ 'Gewicht van de drone: Elke extra gram vereist een hoger toerental van de motor om lift te genereren, wat de amperage verhoogt.',
147
+ ],
148
+ },
149
+ {
150
+ type: 'title',
151
+ text: '80 Veiligheidsregel: LiPo Chemie Beschermen',
152
+ level: 3,
153
+ },
154
+ {
155
+ type: 'paragraph',
156
+ html: 'Een LiPo-batterij (Lithium Polymeer) ontladen tot 0% van zijn capaciteit is de snelste manier om deze te vernietigen en, erger nog, een crash te veroorzaken. Chemisch gezien lijden cellen onomkeerbare schade als hun voltage onder een kritische drempel daalt (meestal 3,0V - 3,2V per cel).',
157
+ },
158
+ {
159
+ type: 'paragraph',
160
+ html: 'Daarom passen we altijd een <strong>veiligheidsmargeregel</strong> toe. Onze calculator stelt u in staat deze waarde aan te passen, maar het wordt aanbevolen om te landen wanneer er nog 20% lading over is. Dit verlengt niet alleen de levensduur van uw dure batterijen met honderden cycli, maar garandeert u ook een vitale reserve aan kracht in geval van onverwachte windstoten of als u een landing moet afbreken en het opnieuw moet proberen.',
161
+ },
162
+ {
163
+ type: 'tip',
164
+ html: 'Dronebatterijen zijn erg gevoelig voor kou. In de winter neemt de interne weerstand van de LiPo toe, wat een snellere spanningsval veroorzaakt. Warm uw batterijen altijd op voor het opstijgen als de omgevingstemperatuur lager is dan 15 graden.',
165
+ },
166
+ {
167
+ type: 'title',
168
+ text: 'Mathematische Vluchtformule',
169
+ level: 3,
170
+ },
171
+ {
172
+ type: 'paragraph',
173
+ html: 'Hoewel onze tool het zware werk voor u doet, is het interessant om de logica achter de berekening te kennen. De basisformule is:',
174
+ },
175
+ {
176
+ type: 'paragraph',
177
+ html: '<strong>Tijd (min) = ((Capaciteit mAh / 1000) * Veiligheidsfactor) / Amps Verbruik * 60</strong>',
178
+ },
179
+ {
180
+ type: 'paragraph',
181
+ html: 'Als u bijvoorbeeld een batterij van 2200 mAh heeft, wilt landen bij 20% (veiligheid 0,8) en uw drone gemiddeld 15 Amps verbruikt, is de berekening: (2,2 * 0,8) / 15 * 60 = 7,04 minuten veilige vluchttijd.',
182
+ },
183
+ {
184
+ type: 'title',
185
+ text: 'Gewichtsoptimalisatie en Efficiëntie',
186
+ level: 3,
187
+ },
188
+ {
189
+ type: 'paragraph',
190
+ html: 'Er is een punt van afnemende meeropbrengst bij het toevoegen van grotere batterijen. Het verdubbelen van de batterijcapaciteit verdubbelt de vliegtijd niet, omdat de batterij zelf gewicht toevoegt. Dat extra gewicht vereist dat motoren sneller draaien en daardoor meer stroom verbruiken. Op een gegeven moment verbruikt het extra gewicht meer energie dan het bijdraagt, waardoor de algehele efficiëntie van het systeem afneemt.',
191
+ },
192
+ {
193
+ type: 'paragraph',
194
+ html: 'Ervaren piloten zoeken naar de perfecte balans tussen <em>Disc Loading</em> (propelleroppervlakbelasting) en batterijcapaciteit om wat we noemen "nuttige missietijd" te maximaliseren.',
195
+ },
196
+ {
197
+ type: 'title',
198
+ text: 'Verschillen tussen Drone-typen',
199
+ level: 3,
200
+ },
201
+ {
202
+ type: 'paragraph',
203
+ html: '<strong>Micro-drones (Whoops):</strong> Deze verbruiken slechts 2-5 Amps, maar gebruiken batterijen van 300-500 mAh. De tijd is meestal kort (3-4 min) door lage inertie en hoge toerentallen.',
204
+ },
205
+ {
206
+ type: 'paragraph',
207
+ html: '<strong>5" Racing-drones:</strong> Brutaal verbruik tijdens races (tot 120A pieken), waardoor een 1300 mAh batterij in nauwelijks 2 minuten pure adrenaline leeg is.',
208
+ },
209
+ {
210
+ type: 'paragraph',
211
+ html: '<strong>Long Range-drones:</strong> Geoptimaliseerd voor efficiëntie. Ze maken vaak gebruik van Lithium-Ion (Li-Ion) cellen die een hogere energiedichtheid hebben dan LiPo\'s, waardoor vluchten van 30 tot 60 minuten mogelijk zijn met een zeer laag stroomverbruik.',
212
+ },
213
+ {
214
+ type: 'tip',
215
+ html: 'Overschakelen naar propellers met een lagere spoed (pitch) kan uw vliegtijd verlengen ten koste van topsnelheid en reactievermogen. Het is de goedkoopste en meest effectieve manier om 10-15% meer autonomie te winnen.',
216
+ },
217
+ {
218
+ type: 'title',
219
+ text: 'Onderhoud en Opslag',
220
+ level: 3,
221
+ },
222
+ {
223
+ type: 'paragraph',
224
+ html: 'Om deze berekeningen nauwkeurig te laten zijn, moeten uw batterijen in goede staat verkeren. Een batterij met een hoge interne weerstand zal overmatig warm worden en "liegen" over zijn werkelijke capaciteit. Bewaar uw batterijen altijd op opslagvoltage (3,8V-3,85V per cel) als u langer dan 48 uur niet gaat vliegen.',
225
+ },
226
+ {
227
+ type: 'paragraph',
228
+ html: 'Kortom, energiemanagement is de kunst van het balanceren van fysica, chemie en wiskunde. Gebruik onze calculator regelmatig om uw vliegsessies te plannen en vergeet nooit dat in de lucht tijd uw kostbaarste bezit is. Veel vliegplezier en veilige landingen!',
229
+ },
230
+ ],
231
+ faq: faqItems,
232
+ bibliography: [
233
+ { name: 'EASA - Drone Regulations', url: 'https://www.easa.europa.eu/en/domains/civil-drones' },
234
+ { name: 'ArduPilot Wiki', url: 'https://ardupilot.org/copter/' },
235
+ { name: 'Battery University', url: 'https://batteryuniversity.com/' },
236
+ ],
237
+ howTo: howToSteps,
238
+ schemas,
239
+ };
@@ -0,0 +1,239 @@
1
+ import type { DroneFlightTimeLocaleContent } from '../index';
2
+ import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
3
+
4
+ const slug = 'kalkulator-czasu-lotu-drona';
5
+ const title = 'Kalkulator Czasu Lotu Drona do Szacowania Autonomii LiPo LiIon';
6
+ const description = 'Oblicz, jak długo Twój dron może latać na podstawie pojemności mAh i zużycia prądu. Zoptymalizuj swoje akumulatory LiPo dla bezpiecznych lotów.';
7
+
8
+ const faqItems = [
9
+ {
10
+ question: 'Why is actual flight time lower than calculated?',
11
+ answer: 'The calculator assumes constant consumption. Sharp maneuvers, headwinds, and battery wear can reduce actual flight time by up to 30%.',
12
+ },
13
+ {
14
+ question: 'At what voltage should I land my drone?',
15
+ answer: 'Ideally, land when the voltage drops to 3.5V - 3.6V per cell (at rest). This corresponds to the recommended 20% remaining capacity.',
16
+ },
17
+ {
18
+ question: 'Are LiPo or Li-Ion batteries better for drones?',
19
+ answer: 'LiPos offer high instantaneous power (ideal for racing and acrobatics). Li-Ion cells have longer endurance but lower power output (ideal for long, steady flights).',
20
+ },
21
+ {
22
+ question: 'How does the cell count (S) affect flight time?',
23
+ answer: 'More cells increase voltage and power, but also weight. If motors are optimized for that voltage, they can be more efficient, but cell count alone does not guarantee more time.',
24
+ },
25
+ ];
26
+
27
+ const howToSteps = [
28
+ {
29
+ name: 'Identify Capacity',
30
+ text: 'Check your battery label and look for the mAh value (e.g., 1500, 2200, 4500).',
31
+ },
32
+ {
33
+ name: 'Estimate Current Draw',
34
+ text: 'Enter the average amperage your drone consumes. You can find this in your OSD telemetry after a test flight.',
35
+ },
36
+ {
37
+ name: 'Adjust Safety Margin',
38
+ text: 'We recommend leaving 20% (set to 80%) to protect the battery and provide a landing buffer.',
39
+ },
40
+ {
41
+ name: 'Get the Result',
42
+ text: 'View the exact time in minutes and seconds that you can safely stay in the air.',
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
+
80
+ export const content: DroneFlightTimeLocaleContent = {
81
+ slug,
82
+ title,
83
+ description,
84
+ faqTitle: 'Często Zadawane Pytania',
85
+ bibliographyTitle: 'Bibliografia',
86
+ ui: {
87
+ faqTitle: 'Często Zadawane Pytania',
88
+ bibliographyTitle: 'Bibliografia',
89
+ batterySpecs: 'Specyfikacja Akumulatora',
90
+ capacity: 'Pojemność',
91
+ voltage: 'Napięcie (Cele S)',
92
+ safetyMargin: 'Margines Bezpieczeństwa',
93
+ landingHint: 'Ląduj przy 3.5V - 3.7V na celę.',
94
+ consumptionDynamics: 'Dynamika Zużycia',
95
+ averageConsumption: 'Średni Pobór Prądu',
96
+ powerWatts: 'Moc (Waty)',
97
+ efficiencyHint: 'Przy zmianie Amperów, Waty są przeliczane na podstawie napięcia S.',
98
+ estimatedEfficiency: 'Szacowana Wydajność',
99
+ typicalEfficiencyHint: 'Typowa: 4-6 (Racing), 8-12 (Cinematic/Long Range).',
100
+ safeFlight: 'Bezpieczny Lot',
101
+ totalEnergy: 'Całkowita Energia',
102
+ theoreticalTime: 'Czas Teoretyczny (0%)',
103
+ co2Footprint: 'Ślad Węglowy CO2',
104
+ autonomyChart: 'Wykres Autonomii',
105
+ chartSubtitle: 'Ampery (A) vs. Czas (min)',
106
+ chartLabel: 'Minuty',
107
+ },
108
+ seo: [
109
+ {
110
+ type: 'title',
111
+ text: 'Kalkulator Czasu Lotu Drona: Kompletny Przewodnik po Autonomii',
112
+ level: 2,
113
+ },
114
+ {
115
+ type: 'paragraph',
116
+ html: 'Autonomia jest prawdopodobnie najbardziej krytycznym czynnikiem w projektowaniu i eksploatacji każdego bezzałogowego statku powietrznego. Niezależnie od tego, czy jesteś pilotem wyścigowym FPV, profesjonalnym fotografem lotniczym, czy entuzjastą lotów dalekiego zasięgu, dokładna wiedza o tym, jak długo Twój sprzęt może pozostać w powietrzu, jest niezbędna dla bezpieczeństwa i sukcesu misji. Nasz <strong>kalkulator czasu lotu</strong> wykorzystuje podstawowe zmienne pojemności akumulatora i poboru prądu, aby zapewnić realistyczne i bezpieczne szacunki.',
117
+ },
118
+ {
119
+ type: 'title',
120
+ text: 'Pojemność Akumulatora: Wyjaśnienie mAh',
121
+ level: 3,
122
+ },
123
+ {
124
+ type: 'paragraph',
125
+ html: 'Pojemność akumulatora jest zazwyczaj mierzona w miliamperogodzinach (mAh). Ta liczba wskazuje, jak duży ładunek elektryczny może pomieścić akumulator. Na przykład akumulator 1500 mAh może teoretycznie dostarczać 1500 miliamperów przez jedną pełną godzinę. W świecie dronów, gdzie pobór prądu jest ekstremalnie wysoki, zazwyczaj mówimy w Amperach (A). 1000 mAh to dokładnie 1 Ah (Amperogodzina).',
126
+ },
127
+ {
128
+ type: 'paragraph',
129
+ html: 'Jednak sama pojemność to nie wszystko. Napięcie (określane przez liczbę cel lub \'S\') bezpośrednio wpływa na całkowitą moc (Waty), ale do obliczania czasu na podstawie zużycia silników, stosunek Ah/Ampery jest najbardziej bezpośrednią metryką stosowaną przez inżynierów lotnictwa.',
130
+ },
131
+ {
132
+ type: 'title',
133
+ text: 'Pobór Prądu: Natężenie w Locie',
134
+ level: 3,
135
+ },
136
+ {
137
+ type: 'paragraph',
138
+ html: 'Zużycie silników to najbardziej zmienna wartość podczas lotu. Utrzymywanie drona w zawisie (hover) to nie to samo co wykonywanie agresywnych manewrów akrobatycznych. Każda kombinacja silnika i śmigła ma swoją krzywą wydajności. Kiedy dajesz pełny gaz, natężenie prądu gwałtownie rośnie, drastycznie skracając żywotność akumulatora.',
139
+ },
140
+ {
141
+ type: 'list',
142
+ items: [
143
+ 'Lot w Zawisie: Zużycie jest minimalne i stałe, idealne do fotografii.',
144
+ 'Lot Wycieczkowy: Nieco zwiększone zużycie ze względu na opór aerodynamiczny.',
145
+ 'Lot Agresywny/FPV: Skoki natężenia mogą potroić średnie zużycie w ciągu kilku sekund.',
146
+ 'Waga Drona: Każdy dodatkowy gram wymaga wyższych obrotów silnika, aby wygenerować siłę nośną, co zwiększa natężenie prądu.',
147
+ ],
148
+ },
149
+ {
150
+ type: 'title',
151
+ text: 'Zasada Bezpieczeństwa 80: Ochrona Chemii LiPo',
152
+ level: 3,
153
+ },
154
+ {
155
+ type: 'paragraph',
156
+ html: 'Rozładowanie akumulatora LiPo (litowo-polimerowego) do 0% pojemności to najszybszy sposób na jego zniszczenie, a co gorsza, spowodowanie katastrofy. Z punktu widzenia chemicznego cele ulegają nieodwracalnemu uszkodzeniu, jeśli ich napięcie spadnie poniżej krytycznego progu (zazwyczaj 3,0V - 3,2V na celę).',
157
+ },
158
+ {
159
+ type: 'paragraph',
160
+ html: 'Dlatego zawsze stosujemy <strong>zasadę marginesu bezpieczeństwa</strong>. Nasz kalkulator pozwala dostosować tę wartość, ale zaleca się lądowanie, gdy pozostanie jeszcze 20% ładunku. Nie tylko wydłuża to żywotność drogich akumulatorów o setki cykli, ale także gwarantuje niezbędną rezerwę mocy w przypadku niespodziewanych podmuchów wiatru lub konieczności przerwania lądowania i ponownej próby.',
161
+ },
162
+ {
163
+ type: 'tip',
164
+ html: 'Akumulatory do dronów są bardzo wrażliwe na zimno. Zimą opór wewnętrzny LiPo rośnie, co powoduje szybszy spadek napięcia. Zawsze rozgrzewaj akumulatory przed startem, jeśli temperatura otoczenia jest niższa niż 15 stopni Celsjusza.',
165
+ },
166
+ {
167
+ type: 'title',
168
+ text: 'Matematyczna Formuła Lotu',
169
+ level: 3,
170
+ },
171
+ {
172
+ type: 'paragraph',
173
+ html: 'Chociaż nasze narzędzie wykonuje ciężką pracę za Ciebie, warto znać logikę stojącą za obliczeniami. Podstawowy wzór to:',
174
+ },
175
+ {
176
+ type: 'paragraph',
177
+ html: '<strong>Czas (min) = ((Pojemność mAh / 1000) * Współczynnik Bezpieczeństwa) / Pobór Amperów * 60</strong>',
178
+ },
179
+ {
180
+ type: 'paragraph',
181
+ html: 'Na przykład, jeśli masz akumulator 2200 mAh, chcesz lądować przy 20% (bezpieczeństwo 0,8), a Twój dron pobiera średnio 15 Amperów: (2,2 * 0,8) / 15 * 60 = 7,04 minuty bezpiecznego lotu.',
182
+ },
183
+ {
184
+ type: 'title',
185
+ text: 'Optymalizacja Wagi i Wydajność',
186
+ level: 3,
187
+ },
188
+ {
189
+ type: 'paragraph',
190
+ html: 'Istnieje punkt malejących korzyści przy dodawaniu większych akumulatorów. Podwojenie pojemności akumulatora nie podwaja czasu lotu, ponieważ sam akumulator zwiększa wagę. Ta dodatkowa waga wymaga od silników szybszego obracania się, a tym samym zużywania większej ilości prądu. W pewnym momencie dodatkowa waga zużywa więcej energii, niż dostarcza, zmniejszając ogólną wydajność systemu.',
191
+ },
192
+ {
193
+ type: 'paragraph',
194
+ html: 'Doświadczeni piloci szukają idealnej równowagi między <em>Disc Loading</em> (obciążeniem powierzchni śmigieł) a pojemnością akumulatora, aby zmaksymalizować to, co nazywamy "użytecznym czasem misji".',
195
+ },
196
+ {
197
+ type: 'title',
198
+ text: 'Różnice Między Typami Dronów',
199
+ level: 3,
200
+ },
201
+ {
202
+ type: 'paragraph',
203
+ html: '<strong>Mikrodrony (Whoops):</strong> Pobierają zaledwie 2-5 Amperów, ale używają akumulatorów 300-500 mAh. Czas jest zazwyczaj krótki (3-4 min) ze względu na niską bezwładność i wysokie obroty.',
204
+ },
205
+ {
206
+ type: 'paragraph',
207
+ html: '<strong>5-calowe Drony Wyścigowe:</strong> Potężne zużycie podczas wyścigów (do 120A w szczycie), co wyczerpuje akumulator 1300 mAh w zaledwie 2 minuty czystej adrenaliny.',
208
+ },
209
+ {
210
+ type: 'paragraph',
211
+ html: '<strong>Drony Dalekiego Zasięgu:</strong> Zoptymalizowane pod kątem wydajności. Często używają ogniw litowo-jonowych (Li-Ion), które mają wyższą gęstość energii niż LiPo, co pozwala na loty trwające od 30 do 60 minut przy bardzo niskim natężeniu prądu.',
212
+ },
213
+ {
214
+ type: 'tip',
215
+ html: 'Zmiana śmigieł na takie o mniejszym skoku (pitch) może wydłużyć czas lotu kosztem prędkości maksymalnej i responsywności. Jest to najtańszy i najskuteczniejszy sposób na uzyskanie o 10-15% większej autonomii.',
216
+ },
217
+ {
218
+ type: 'title',
219
+ text: 'Konserwacja i Przechowywanie',
220
+ level: 3,
221
+ },
222
+ {
223
+ type: 'paragraph',
224
+ html: 'Aby obliczenia tego narzędzia były dokładne, Twoje akumulatory muszą być w dobrym stanie. Akumulator o wysokim oporze wewnętrznym będzie się nadmiernie nagrzewał i "kłamał" na temat swojej rzeczywistej pojemności. Zawsze przechowuj akumulatory przy napięciu spoczynkowym (3,8V-3,85V na celę), jeśli nie będziesz latać dłużej niż 48 godzin.',
225
+ },
226
+ {
227
+ type: 'paragraph',
228
+ html: 'Podsumowując, zarządzanie energią to sztuka równoważenia fizyki, chemii i matematyki. Korzystaj z naszego kalkulatora regularnie, aby planować swoje sesje lotnicze i nigdy nie zapominaj, że w powietrzu czas jest Twoim najcenniejszym zasobem. Życzymy udanych lotów i bezpiecznych lądowań!',
229
+ },
230
+ ],
231
+ faq: faqItems,
232
+ bibliography: [
233
+ { name: 'EASA - Drone Regulations', url: 'https://www.easa.europa.eu/en/domains/civil-drones' },
234
+ { name: 'ArduPilot Wiki', url: 'https://ardupilot.org/copter/' },
235
+ { name: 'Battery University', url: 'https://batteryuniversity.com/' },
236
+ ],
237
+ howTo: howToSteps,
238
+ schemas,
239
+ };