metar-taf-parser 0.0.1 → 0.0.2

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 (57) hide show
  1. package/README.md +8 -2
  2. package/dist/{lib/command → command}/common.d.ts +1 -1
  3. package/dist/{lib/command → command}/common.js +4 -4
  4. package/dist/{lib/command → command}/metar.d.ts +5 -1
  5. package/dist/{lib/command → command}/metar.js +6 -5
  6. package/dist/{lib/command → command}/remark.d.ts +5 -1
  7. package/dist/{lib/command → command}/remark.js +130 -148
  8. package/dist/{lib/commons → commons}/converter.d.ts +0 -0
  9. package/dist/{lib/commons → commons}/converter.js +2 -2
  10. package/dist/{lib/commons → commons}/errors.d.ts +7 -2
  11. package/dist/{lib/commons → commons}/errors.js +8 -3
  12. package/dist/commons/i18n.d.ts +12 -0
  13. package/dist/{lib/commons → commons}/i18n.js +12 -4
  14. package/dist/{lib/helpers → helpers}/helpers.d.ts +0 -1
  15. package/dist/helpers/helpers.js +23 -0
  16. package/dist/index.d.ts +10 -0
  17. package/dist/index.js +38 -0
  18. package/dist/locale/de.d.ts +321 -0
  19. package/dist/locale/de.js +322 -0
  20. package/dist/locale/en.d.ts +387 -0
  21. package/dist/locale/en.js +398 -0
  22. package/dist/locale/fr.d.ts +365 -0
  23. package/dist/locale/fr.js +376 -0
  24. package/dist/locale/it.d.ts +337 -0
  25. package/dist/locale/it.js +338 -0
  26. package/dist/locale/pl.d.ts +98 -0
  27. package/dist/locale/pl.js +99 -0
  28. package/dist/locale/zh-CN.d.ts +111 -0
  29. package/dist/locale/zh-CN.js +112 -0
  30. package/dist/model/enum.d.ts +221 -0
  31. package/dist/model/enum.js +231 -0
  32. package/dist/{lib/model → model}/model.d.ts +14 -7
  33. package/dist/{lib/model → model}/model.js +1 -1
  34. package/dist/parser/parser.d.ts +66 -0
  35. package/dist/parser/parser.js +322 -0
  36. package/package.json +8 -3
  37. package/dist/lib/commons/i18n.d.ts +0 -3
  38. package/dist/lib/helpers/helpers.js +0 -28
  39. package/dist/lib/index.d.ts +0 -1
  40. package/dist/lib/index.js +0 -3
  41. package/dist/lib/locale/en.json +0 -396
  42. package/dist/lib/model/enum.d.ts +0 -122
  43. package/dist/lib/model/enum.js +0 -132
  44. package/dist/lib/parser/parser.d.ts +0 -26
  45. package/dist/lib/parser/parser.js +0 -198
  46. package/dist/tests/command/common.test.d.ts +0 -1
  47. package/dist/tests/command/common.test.js +0 -102
  48. package/dist/tests/command/metar.test.d.ts +0 -1
  49. package/dist/tests/command/metar.test.js +0 -52
  50. package/dist/tests/command/remark.test.d.ts +0 -1
  51. package/dist/tests/command/remark.test.js +0 -689
  52. package/dist/tests/common/converter.test.d.ts +0 -1
  53. package/dist/tests/common/converter.test.js +0 -78
  54. package/dist/tests/helpers/helpers.test.d.ts +0 -1
  55. package/dist/tests/helpers/helpers.test.js +0 -17
  56. package/dist/tests/parser/parser.test.d.ts +0 -1
  57. package/dist/tests/parser/parser.test.js +0 -96
@@ -0,0 +1,322 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = {
4
+ CloudQuantity: {
5
+ BKN: "stark bewölkt",
6
+ FEW: "leicht bewölkt",
7
+ NSC: "keine signifikanten Wolken",
8
+ OVC: "bedeckt",
9
+ SCT: "aufgelockert",
10
+ SKC: "wolkenlos",
11
+ },
12
+ CloudType: {
13
+ CC: "Cirrocumulus",
14
+ TCU: "turmartigen Cumulus",
15
+ },
16
+ DepositBrakingCapacity: {
17
+ NOT_REPORTED: "nicht gemeldet",
18
+ POOR: "schlecht",
19
+ MEDIUM_POOR: "schlecht/mäßig",
20
+ MEDIUM: "mäßig",
21
+ MEDIUM_GOOD: "mäßig/gut",
22
+ GOOD: "gut",
23
+ UNRELIABLE: "Werte unzuverlässig",
24
+ },
25
+ DepositCoverage: {
26
+ NOT_REPORTED: "nicht gemeldet",
27
+ LESS_10: "weniger als 10%",
28
+ FROM_11_TO_25: "von 11% bis 25%",
29
+ FROM_26_TO_50: "von 26% bis 50%",
30
+ FROM_51_TO_100: "von 51% bis 100%",
31
+ },
32
+ DepositThickness: {
33
+ NOT_REPORTED: "nicht gemeldet",
34
+ LESS_1_MM: "weniger als 1 mm",
35
+ THICKNESS_40: "40 cm oder mehr",
36
+ CLOSED: "geschlossen",
37
+ },
38
+ DepositType: {
39
+ NOT_REPORTED: "nicht gemeldet",
40
+ CLEAR_DRY: "frei von Ablagerungen und trocken",
41
+ DAMP: "feucht",
42
+ WET_WATER_PATCHES: "nass oder Wasserpfützen",
43
+ RIME_FROST_COVERED: "reif- oder frostbedeckt",
44
+ DRY_SNOW: "trockener Schnee",
45
+ WET_SNOW: "nasser Schnee",
46
+ ICE: "Eis",
47
+ COMPACTED_SNOW: "kompakter Schnee",
48
+ FROZEN_RIDGES: "festgefrorene Radspuren",
49
+ },
50
+ Descriptive: {
51
+ BC: "Schwaden",
52
+ BL: "treiben",
53
+ DR: "fegen",
54
+ FZ: "gefrierend",
55
+ MI: "flach",
56
+ PR: "teilweise",
57
+ SH: "Schauer von",
58
+ TS: "Gewitter",
59
+ },
60
+ Error: {
61
+ prefix: "Ein Fehler ist aufgetretten. Error Code n°",
62
+ },
63
+ ErrorCode: {
64
+ AirportNotFound: "Der Flughafen wurde in dieser Mitteilung nicht gefunden",
65
+ InvalidMessage: "Eingegebende Mitteilung nicht gültig",
66
+ },
67
+ Indicator: {
68
+ M: "weniger als",
69
+ P: "mehr als",
70
+ },
71
+ Intensity: {
72
+ "-": "leicht",
73
+ VC: "in Flugplatznähe",
74
+ },
75
+ "intensity-plus": "stark",
76
+ Phenomenon: {
77
+ BR: "feuchter Dunst",
78
+ DS: "Staubsturm",
79
+ DU: "weit verbreiteter Staub",
80
+ DZ: "Sprühregen",
81
+ FC: "Wolkenschlauch",
82
+ FG: "Nebel",
83
+ FU: "Rauch",
84
+ GR: "Hagel; Körner größer 5mm",
85
+ GS: "Graupel; Körner kleiner 5mm",
86
+ HZ: "trockener Dunst",
87
+ IC: "Eiskristalle",
88
+ PL: "Eiskörner",
89
+ PO: "Staub/Sandwirbel",
90
+ PY: "Sprühregen",
91
+ RA: "Regen",
92
+ SA: "Sand",
93
+ SG: "Schneegriesel",
94
+ SN: "Schnee",
95
+ SQ: "Böen",
96
+ SS: "Sandsturm",
97
+ UP: "unbekannte Erscheinung",
98
+ VA: "Vulkanasche",
99
+ TS: "Gewittersturm",
100
+ },
101
+ Remark: {
102
+ AO1: "automatisierte Station ohne Niederschlagsunterscheidung",
103
+ AO2: "automatisierte Station mit Niederschlagsunterscheidung",
104
+ BASED: "stationiert",
105
+ Ceiling: {
106
+ Height: "Wolkenhöhe zwischen {0} und {1} Fuss",
107
+ Second: {
108
+ Location: "Wolkenuntergrenze {0} Fuss gemessen von zweitem Sensor bei {1}",
109
+ },
110
+ },
111
+ FCST: "Vorhersage",
112
+ FUNNELCLOUD: "Trichterwolke",
113
+ Hail: {
114
+ "0": "größte Hagelkörner mit einem Durchmesser von {0} Zoll",
115
+ LesserThan: "größte Hagelkörner mit einem Durchmesser von weniger als [0} Zoll",
116
+ },
117
+ HVY: "stark",
118
+ LGT: "leicht",
119
+ MOD: "mäßig",
120
+ Obscuration: "{0} bei {1} Fuss bestehend aus {2}",
121
+ ON: "auf",
122
+ NXT: "nächster",
123
+ PeakWind: "Windspitze von {1} Knoten aus {0} Grad um {2}:{3}",
124
+ Precipitation: {
125
+ Beg: {
126
+ End: "{0} {1} begann um {2}:{3} endete um {4}:{5}",
127
+ },
128
+ },
129
+ PRESFR: "schnell fallender Luftdruck",
130
+ PRESRR: "schnell steigender Luftdruck",
131
+ Second: {
132
+ Location: {
133
+ Visibility: "Sicht von {0} SM gemessen von zweitem Sensor bei {1}",
134
+ },
135
+ },
136
+ Sea: {
137
+ Level: {
138
+ Pressure: "Luftdruck Meeresniveau bei {0} hPa",
139
+ },
140
+ },
141
+ Sector: {
142
+ Visibility: "Sicht von {1} SM nach {0}",
143
+ },
144
+ SLPNO: "Luftdruck Meeresniveau nicht verfügbar",
145
+ Snow: {
146
+ Increasing: {
147
+ Rapidly: "Schneehöhe vergrößert um {0} Zoll in der letzten Stunde zu Schneehöhe von {1} Zoll",
148
+ },
149
+ Pellets: "{0} Graupel",
150
+ },
151
+ Surface: {
152
+ Visibility: "Sicht von {0} SM am Boden",
153
+ },
154
+ Thunderstorm: {
155
+ Location: {
156
+ "0": "Gewitter im {0} der Station",
157
+ Moving: "Gewitter im {0} der Station, zieht nach {1}",
158
+ },
159
+ },
160
+ Tornadic: {
161
+ Activity: {
162
+ Beginning: "{0} begann um {1}:{2} {3} SM im {4} der Station",
163
+ BegEnd: "{0} begann um {1}:{2} endete um {3}:{4} {5} SM im {6} der Station",
164
+ Ending: "{0} endete um {1}:{2} {3} SM im {4} der Station",
165
+ },
166
+ },
167
+ TORNADO: "Tornado",
168
+ Tower: {
169
+ Visibility: "Sicht von {0} SM am Turm",
170
+ },
171
+ Variable: {
172
+ Prevailing: {
173
+ Visibility: "vorherrschende Sicht veränderlich zwischen {0} und {1} SM",
174
+ },
175
+ Sky: {
176
+ Condition: {
177
+ "0": "Bewölkung veränderlich zwischen {0} und {1}",
178
+ Height: "Wolkenschicht bei {0} Fuss veränderlich zwischen {1} und {2}",
179
+ },
180
+ },
181
+ },
182
+ VIRGA: "Virga",
183
+ Virga: {
184
+ Direction: "Virga im {0} der Station",
185
+ },
186
+ WATERSPOUT: "Wasserhose",
187
+ WindShift: {
188
+ "0": "Windveränderung um {0}:{1}",
189
+ FROPA: "Windveränderung begleitet von Frontdurchzug um {0}:{1}",
190
+ },
191
+ },
192
+ MetarFacade: {
193
+ InvalidIcao: "Icao Code ist nicht gültig",
194
+ },
195
+ Converter: {
196
+ D: "abnehmend",
197
+ E: "Ost",
198
+ ENE: "Ostnordost",
199
+ ESE: "Ostsüdost",
200
+ N: "Nord",
201
+ NE: "Nordost",
202
+ NNE: "Nordnordost",
203
+ NNW: "Nordnordwest",
204
+ NSC: "keine wesentliche Änderung",
205
+ NW: "Nordwest",
206
+ S: "Süd",
207
+ SE: "Südost",
208
+ SSE: "Südsüdost",
209
+ SSW: "Südsüdwest",
210
+ SW: "Südwest",
211
+ U: "zunehmend",
212
+ VRB: "veränderlich",
213
+ WNW: "Westnordwest",
214
+ WSW: "Westsüdwest",
215
+ },
216
+ WeatherChangeType: {
217
+ FM: "Von",
218
+ BECMG: "Übergehend",
219
+ TEMPO: "Temporär",
220
+ PROB: "Warscheinlichkeit",
221
+ },
222
+ TimeIndicator: {
223
+ AT: "um",
224
+ FM: "von",
225
+ TL: "bis um",
226
+ },
227
+ ToString: {
228
+ airport: "Flughafen",
229
+ altimeter: "Höhenmesser",
230
+ amendment: "Ergänzung",
231
+ auto: "automatische Station",
232
+ cavok: "Bewölkung und Sicht OK",
233
+ clouds: "Wolken",
234
+ day: {
235
+ month: "Tag",
236
+ hour: "Stunde",
237
+ },
238
+ deposit: {
239
+ braking: "Bremswirkung",
240
+ coverage: "Bedeckung",
241
+ thickness: "Stärke",
242
+ type: "Typ der Ablagerung",
243
+ },
244
+ descriptive: "Eigenschaft",
245
+ dew: {
246
+ point: "Taupunkttemperatur",
247
+ },
248
+ end: {
249
+ day: {
250
+ month: "Tag",
251
+ },
252
+ hour: {
253
+ day: "Stunde",
254
+ },
255
+ },
256
+ height: {
257
+ feet: "Höhe (Fuss)",
258
+ meter: "Höhe (m)",
259
+ },
260
+ intensity: "Intensität",
261
+ indicator: "Indikator",
262
+ message: "ursprüngliche Meldung",
263
+ name: "Name",
264
+ nosig: "keine wesentlichen Änderungen",
265
+ phenomenons: "Erscheinungen",
266
+ probability: "Wahrscheinlichkeit",
267
+ quantity: "Menge",
268
+ remark: "Bemerkungen",
269
+ report: {
270
+ time: "Zeit der Meldung",
271
+ },
272
+ runway: {
273
+ info: "Pisteninformationen",
274
+ },
275
+ start: {
276
+ day: {
277
+ month: "Tag",
278
+ },
279
+ hour: {
280
+ day: "Stunde",
281
+ },
282
+ minute: "Minute",
283
+ },
284
+ temperature: {
285
+ "0": "Temperatur (°C)",
286
+ max: "maximale Temperatur (°C)",
287
+ min: "minimale Temperatur (°C)",
288
+ },
289
+ trend: "Trend",
290
+ trends: "Trends",
291
+ type: "Typ",
292
+ visibility: {
293
+ main: "Hauptsicht",
294
+ min: {
295
+ "0": "minimale Sicht",
296
+ direction: "Richtung der minimalen Sicht",
297
+ },
298
+ max: "maximale Sicht",
299
+ },
300
+ vertical: {
301
+ visibility: "vertikale Sicht (ft)",
302
+ },
303
+ weather: {
304
+ conditions: "Wetterbedingungen",
305
+ },
306
+ wind: {
307
+ direction: {
308
+ "0": "Richtung",
309
+ degrees: "Richtung (Grad)",
310
+ },
311
+ gusts: "Böen",
312
+ min: {
313
+ variation: "minimale Windänderung",
314
+ },
315
+ max: {
316
+ variation: "maximale Windänderung",
317
+ },
318
+ speed: "Geschwindigkeit",
319
+ unit: "Einheit",
320
+ },
321
+ },
322
+ };
@@ -0,0 +1,387 @@
1
+ declare const _default: {
2
+ CloudQuantity: {
3
+ BKN: string;
4
+ FEW: string;
5
+ NSC: string;
6
+ OVC: string;
7
+ SCT: string;
8
+ SKC: string;
9
+ };
10
+ CloudType: {
11
+ AC: string;
12
+ AS: string;
13
+ CB: string;
14
+ CC: string;
15
+ CI: string;
16
+ CS: string;
17
+ CU: string;
18
+ NS: string;
19
+ SC: string;
20
+ ST: string;
21
+ TCU: string;
22
+ };
23
+ Converter: {
24
+ D: string;
25
+ E: string;
26
+ ENE: string;
27
+ ESE: string;
28
+ N: string;
29
+ NE: string;
30
+ NNE: string;
31
+ NNW: string;
32
+ NSC: string;
33
+ NW: string;
34
+ S: string;
35
+ SE: string;
36
+ SSE: string;
37
+ SSW: string;
38
+ SW: string;
39
+ U: string;
40
+ VRB: string;
41
+ W: string;
42
+ WNW: string;
43
+ WSW: string;
44
+ };
45
+ DepositBrakingCapacity: {
46
+ GOOD: string;
47
+ MEDIUM: string;
48
+ MEDIUM_GOOD: string;
49
+ MEDIUM_POOR: string;
50
+ NOT_REPORTED: string;
51
+ POOR: string;
52
+ UNRELIABLE: string;
53
+ };
54
+ DepositCoverage: {
55
+ FROM_11_TO_25: string;
56
+ FROM_26_TO_50: string;
57
+ FROM_51_TO_100: string;
58
+ LESS_10: string;
59
+ NOT_REPORTED: string;
60
+ };
61
+ DepositThickness: {
62
+ CLOSED: string;
63
+ LESS_1_MM: string;
64
+ NOT_REPORTED: string;
65
+ THICKNESS_10: string;
66
+ THICKNESS_15: string;
67
+ THICKNESS_20: string;
68
+ THICKNESS_25: string;
69
+ THICKNESS_30: string;
70
+ THICKNESS_35: string;
71
+ THICKNESS_40: string;
72
+ };
73
+ DepositType: {
74
+ CLEAR_DRY: string;
75
+ COMPACTED_SNOW: string;
76
+ DAMP: string;
77
+ DRY_SNOW: string;
78
+ FROZEN_RIDGES: string;
79
+ ICE: string;
80
+ NOT_REPORTED: string;
81
+ RIME_FROST_COVERED: string;
82
+ SLUSH: string;
83
+ WET_SNOW: string;
84
+ WET_WATER_PATCHES: string;
85
+ };
86
+ Descriptive: {
87
+ BC: string;
88
+ BL: string;
89
+ DR: string;
90
+ FZ: string;
91
+ MI: string;
92
+ PR: string;
93
+ SH: string;
94
+ TS: string;
95
+ };
96
+ Error: {
97
+ prefix: string;
98
+ };
99
+ ErrorCode: {
100
+ AirportNotFound: string;
101
+ InvalidMessage: string;
102
+ };
103
+ Indicator: {
104
+ M: string;
105
+ P: string;
106
+ };
107
+ "intensity-plus": string;
108
+ Intensity: {
109
+ "-": string;
110
+ VC: string;
111
+ };
112
+ MetarFacade: {
113
+ InvalidIcao: string;
114
+ };
115
+ Phenomenon: {
116
+ BR: string;
117
+ DS: string;
118
+ DU: string;
119
+ DZ: string;
120
+ FC: string;
121
+ FG: string;
122
+ FU: string;
123
+ GR: string;
124
+ GS: string;
125
+ HZ: string;
126
+ IC: string;
127
+ PL: string;
128
+ PO: string;
129
+ PY: string;
130
+ RA: string;
131
+ SA: string;
132
+ SG: string;
133
+ SN: string;
134
+ SQ: string;
135
+ SS: string;
136
+ TS: string;
137
+ UP: string;
138
+ VA: string;
139
+ };
140
+ Remark: {
141
+ ALQDS: string;
142
+ AO1: string;
143
+ AO2: string;
144
+ BASED: string;
145
+ Barometer: string[];
146
+ Ceiling: {
147
+ Height: string;
148
+ Second: {
149
+ Location: string;
150
+ };
151
+ };
152
+ DSNT: string;
153
+ FCST: string;
154
+ FUNNELCLOUD: string;
155
+ HVY: string;
156
+ Hail: {
157
+ "0": string;
158
+ LesserThan: string;
159
+ };
160
+ Hourly: {
161
+ Maximum: {
162
+ Minimum: {
163
+ Temperature: string;
164
+ };
165
+ Temperature: string;
166
+ };
167
+ Minimum: {
168
+ Temperature: string;
169
+ };
170
+ Temperature: {
171
+ "0": string;
172
+ Dew: {
173
+ Point: string;
174
+ };
175
+ };
176
+ };
177
+ Ice: {
178
+ Accretion: {
179
+ Amount: string;
180
+ };
181
+ };
182
+ LGT: string;
183
+ LTG: string;
184
+ MOD: string;
185
+ NXT: string;
186
+ ON: string;
187
+ Obscuration: string;
188
+ PRESFR: string;
189
+ PRESRR: string;
190
+ PeakWind: string;
191
+ Precipitation: {
192
+ Amount: {
193
+ "24": string;
194
+ "3": {
195
+ "6": string;
196
+ };
197
+ Hourly: string;
198
+ };
199
+ Beg: {
200
+ "0": string;
201
+ End: string;
202
+ };
203
+ End: string;
204
+ };
205
+ Pressure: {
206
+ Tendency: string;
207
+ };
208
+ SLPNO: string;
209
+ Sea: {
210
+ Level: {
211
+ Pressure: string;
212
+ };
213
+ };
214
+ Second: {
215
+ Location: {
216
+ Visibility: string;
217
+ };
218
+ };
219
+ Sector: {
220
+ Visibility: string;
221
+ };
222
+ Snow: {
223
+ Depth: string;
224
+ Increasing: {
225
+ Rapidly: string;
226
+ };
227
+ Pellets: string;
228
+ };
229
+ Sunshine: {
230
+ Duration: string;
231
+ };
232
+ Surface: {
233
+ Visibility: string;
234
+ };
235
+ TORNADO: string;
236
+ Thunderstorm: {
237
+ Location: {
238
+ "0": string;
239
+ Moving: string;
240
+ };
241
+ };
242
+ Tornadic: {
243
+ Activity: {
244
+ BegEnd: string;
245
+ Beginning: string;
246
+ Ending: string;
247
+ };
248
+ };
249
+ Tower: {
250
+ Visibility: string;
251
+ };
252
+ VIRGA: string;
253
+ Variable: {
254
+ Prevailing: {
255
+ Visibility: string;
256
+ };
257
+ Sky: {
258
+ Condition: {
259
+ "0": string;
260
+ Height: string;
261
+ };
262
+ };
263
+ };
264
+ Virga: {
265
+ Direction: string;
266
+ };
267
+ WATERSPOUT: string;
268
+ Water: {
269
+ Equivalent: {
270
+ Snow: {
271
+ Ground: string;
272
+ };
273
+ };
274
+ };
275
+ WindShift: {
276
+ "0": string;
277
+ FROPA: string;
278
+ };
279
+ };
280
+ TimeIndicator: {
281
+ AT: string;
282
+ FM: string;
283
+ TL: string;
284
+ };
285
+ ToString: {
286
+ airport: string;
287
+ altimeter: string;
288
+ amendment: string;
289
+ auto: string;
290
+ cavok: string;
291
+ clouds: string;
292
+ day: {
293
+ hour: string;
294
+ month: string;
295
+ };
296
+ deposit: {
297
+ braking: string;
298
+ coverage: string;
299
+ thickness: string;
300
+ type: string;
301
+ };
302
+ descriptive: string;
303
+ dew: {
304
+ point: string;
305
+ };
306
+ end: {
307
+ day: {
308
+ month: string;
309
+ };
310
+ hour: {
311
+ day: string;
312
+ };
313
+ };
314
+ height: {
315
+ feet: string;
316
+ meter: string;
317
+ };
318
+ indicator: string;
319
+ intensity: string;
320
+ message: string;
321
+ name: string;
322
+ nosig: string;
323
+ phenomenons: string;
324
+ probability: string;
325
+ quantity: string;
326
+ remark: string;
327
+ report: {
328
+ time: string;
329
+ };
330
+ runway: {
331
+ info: string;
332
+ };
333
+ start: {
334
+ day: {
335
+ month: string;
336
+ };
337
+ hour: {
338
+ day: string;
339
+ };
340
+ minute: string;
341
+ };
342
+ temperature: {
343
+ "0": string;
344
+ max: string;
345
+ min: string;
346
+ };
347
+ trend: string;
348
+ trends: string;
349
+ type: string;
350
+ vertical: {
351
+ visibility: string;
352
+ };
353
+ visibility: {
354
+ main: string;
355
+ max: string;
356
+ min: {
357
+ "0": string;
358
+ direction: string;
359
+ };
360
+ };
361
+ weather: {
362
+ conditions: string;
363
+ };
364
+ wind: {
365
+ direction: {
366
+ "0": string;
367
+ degrees: string;
368
+ };
369
+ gusts: string;
370
+ max: {
371
+ variation: string;
372
+ };
373
+ min: {
374
+ variation: string;
375
+ };
376
+ speed: string;
377
+ unit: string;
378
+ };
379
+ };
380
+ WeatherChangeType: {
381
+ BECMG: string;
382
+ FM: string;
383
+ PROB: string;
384
+ TEMPO: string;
385
+ };
386
+ };
387
+ export default _default;