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.
- package/README.md +8 -2
- package/dist/{lib/command → command}/common.d.ts +1 -1
- package/dist/{lib/command → command}/common.js +4 -4
- package/dist/{lib/command → command}/metar.d.ts +5 -1
- package/dist/{lib/command → command}/metar.js +6 -5
- package/dist/{lib/command → command}/remark.d.ts +5 -1
- package/dist/{lib/command → command}/remark.js +130 -148
- package/dist/{lib/commons → commons}/converter.d.ts +0 -0
- package/dist/{lib/commons → commons}/converter.js +2 -2
- package/dist/{lib/commons → commons}/errors.d.ts +7 -2
- package/dist/{lib/commons → commons}/errors.js +8 -3
- package/dist/commons/i18n.d.ts +12 -0
- package/dist/{lib/commons → commons}/i18n.js +12 -4
- package/dist/{lib/helpers → helpers}/helpers.d.ts +0 -1
- package/dist/helpers/helpers.js +23 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +38 -0
- package/dist/locale/de.d.ts +321 -0
- package/dist/locale/de.js +322 -0
- package/dist/locale/en.d.ts +387 -0
- package/dist/locale/en.js +398 -0
- package/dist/locale/fr.d.ts +365 -0
- package/dist/locale/fr.js +376 -0
- package/dist/locale/it.d.ts +337 -0
- package/dist/locale/it.js +338 -0
- package/dist/locale/pl.d.ts +98 -0
- package/dist/locale/pl.js +99 -0
- package/dist/locale/zh-CN.d.ts +111 -0
- package/dist/locale/zh-CN.js +112 -0
- package/dist/model/enum.d.ts +221 -0
- package/dist/model/enum.js +231 -0
- package/dist/{lib/model → model}/model.d.ts +14 -7
- package/dist/{lib/model → model}/model.js +1 -1
- package/dist/parser/parser.d.ts +66 -0
- package/dist/parser/parser.js +322 -0
- package/package.json +8 -3
- package/dist/lib/commons/i18n.d.ts +0 -3
- package/dist/lib/helpers/helpers.js +0 -28
- package/dist/lib/index.d.ts +0 -1
- package/dist/lib/index.js +0 -3
- package/dist/lib/locale/en.json +0 -396
- package/dist/lib/model/enum.d.ts +0 -122
- package/dist/lib/model/enum.js +0 -132
- package/dist/lib/parser/parser.d.ts +0 -26
- package/dist/lib/parser/parser.js +0 -198
- package/dist/tests/command/common.test.d.ts +0 -1
- package/dist/tests/command/common.test.js +0 -102
- package/dist/tests/command/metar.test.d.ts +0 -1
- package/dist/tests/command/metar.test.js +0 -52
- package/dist/tests/command/remark.test.d.ts +0 -1
- package/dist/tests/command/remark.test.js +0 -689
- package/dist/tests/common/converter.test.d.ts +0 -1
- package/dist/tests/common/converter.test.js +0 -78
- package/dist/tests/helpers/helpers.test.d.ts +0 -1
- package/dist/tests/helpers/helpers.test.js +0 -17
- package/dist/tests/parser/parser.test.d.ts +0 -1
- package/dist/tests/parser/parser.test.js +0 -96
|
@@ -0,0 +1,376 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.default = {
|
|
4
|
+
CloudQuantity: {
|
|
5
|
+
BKN: "nuages fragmentés",
|
|
6
|
+
FEW: "peu",
|
|
7
|
+
NSC: "pas de nuages significatifs.",
|
|
8
|
+
OVC: "ciel couvert",
|
|
9
|
+
SCT: "nuages épars",
|
|
10
|
+
SKC: "pas de nuage",
|
|
11
|
+
},
|
|
12
|
+
CloudType: {
|
|
13
|
+
CB: "Cumunolinbus",
|
|
14
|
+
CC: "Cirrocumulus",
|
|
15
|
+
TCU: "Cumulus bourgeonnant",
|
|
16
|
+
},
|
|
17
|
+
DepositBrakingCapacity: {
|
|
18
|
+
NOT_REPORTED: "non reportée",
|
|
19
|
+
POOR: "mauvaise",
|
|
20
|
+
MEDIUM_POOR: "mauvaise/moyenne",
|
|
21
|
+
MEDIUM: "moyenne",
|
|
22
|
+
MEDIUM_GOOD: "moyenne/bonne",
|
|
23
|
+
GOOD: "bonne",
|
|
24
|
+
UNRELIABLE: "valeurs non fiables",
|
|
25
|
+
},
|
|
26
|
+
DepositCoverage: {
|
|
27
|
+
NOT_REPORTED: "non reportée",
|
|
28
|
+
LESS_10: "moins de 10%",
|
|
29
|
+
FROM_11_TO_25: "de 11% à 25%",
|
|
30
|
+
FROM_26_TO_50: "de 26% à 50%",
|
|
31
|
+
FROM_51_TO_100: "de 51% à 100%",
|
|
32
|
+
},
|
|
33
|
+
DepositThickness: {
|
|
34
|
+
NOT_REPORTED: "non reportée",
|
|
35
|
+
LESS_1_MM: "moins de 1 mm",
|
|
36
|
+
THICKNESS_40: "40 cm ou plus",
|
|
37
|
+
CLOSED: "fermée",
|
|
38
|
+
},
|
|
39
|
+
DepositType: {
|
|
40
|
+
NOT_REPORTED: "non reportée",
|
|
41
|
+
CLEAR_DRY: "clair et sec",
|
|
42
|
+
DAMP: "humide",
|
|
43
|
+
WET_WATER_PATCHES: "humide ou flaques d'eau",
|
|
44
|
+
RIME_FROST_COVERED: "couverte de givre ou de glace",
|
|
45
|
+
DRY_SNOW: "neige sèche",
|
|
46
|
+
WET_SNOW: "neige mouillée",
|
|
47
|
+
ICE: "glace",
|
|
48
|
+
COMPACTED_SNOW: "neige compactée ou roulée",
|
|
49
|
+
FROZEN_RIDGES: "ornières ou crêtes gelées",
|
|
50
|
+
SLUSH: "boue",
|
|
51
|
+
},
|
|
52
|
+
Descriptive: {
|
|
53
|
+
BC: "bancs",
|
|
54
|
+
BL: "chasse-poussière haute",
|
|
55
|
+
DR: "chasse-poussière basse",
|
|
56
|
+
FZ: "se congelant",
|
|
57
|
+
MI: "mince",
|
|
58
|
+
PR: "partiel",
|
|
59
|
+
SH: "averses de",
|
|
60
|
+
TS: "orage",
|
|
61
|
+
},
|
|
62
|
+
Error: {
|
|
63
|
+
prefix: "Une erreur est survenue. Code erreur n°",
|
|
64
|
+
},
|
|
65
|
+
ErrorCode: {
|
|
66
|
+
AirportNotFound: "L'aéroport n'a pas été trouvé pour ce message.",
|
|
67
|
+
InvalidMessage: "Le message entré est invalide.",
|
|
68
|
+
},
|
|
69
|
+
Indicator: {
|
|
70
|
+
M: "moins que",
|
|
71
|
+
P: "plus que",
|
|
72
|
+
},
|
|
73
|
+
Intensity: {
|
|
74
|
+
"-": "Faible",
|
|
75
|
+
VC: "Au voisinage de",
|
|
76
|
+
},
|
|
77
|
+
"intensity-plus": "Fort",
|
|
78
|
+
Phenomenon: {
|
|
79
|
+
BR: "brume",
|
|
80
|
+
DS: "tempête de poussière",
|
|
81
|
+
DU: "poussières généralisées",
|
|
82
|
+
DZ: "bruine",
|
|
83
|
+
FC: "nuage en entonnoir",
|
|
84
|
+
FG: "brouillard",
|
|
85
|
+
FU: "fumée",
|
|
86
|
+
GR: "grêle",
|
|
87
|
+
GS: "grsil",
|
|
88
|
+
HZ: "brume sèche",
|
|
89
|
+
IC: "cristaux de glace",
|
|
90
|
+
PL: "granules de glace",
|
|
91
|
+
PO: "tourbillon de poussières sable",
|
|
92
|
+
RA: "pluie",
|
|
93
|
+
SA: "sable",
|
|
94
|
+
SG: "neige en grains",
|
|
95
|
+
SN: "neige",
|
|
96
|
+
SQ: "grains",
|
|
97
|
+
SS: "tempête de sable",
|
|
98
|
+
UP: "précipitation inconnue",
|
|
99
|
+
VA: "cendres volcaniques",
|
|
100
|
+
TS: "orage",
|
|
101
|
+
},
|
|
102
|
+
Remark: {
|
|
103
|
+
AO1: "stations automatisées sans discriminateur de précipitation",
|
|
104
|
+
AO2: "stations automatisées avec discriminateur de précipitation",
|
|
105
|
+
ALQDS: "tous les quadrants",
|
|
106
|
+
Barometer: [
|
|
107
|
+
"Augmentation, puis diminution",
|
|
108
|
+
"Augmentation, puis stabilisation or augmentation puis augmentation légère",
|
|
109
|
+
"augmentation régulière ou instable",
|
|
110
|
+
"Diminution ou stabilisation puis diminution; ou augmentation puis augmentation rapide",
|
|
111
|
+
"Stable",
|
|
112
|
+
"Diminution, puis augmentation",
|
|
113
|
+
"Diminution puis stabilisation; ou diminution puis diminution plus lente",
|
|
114
|
+
"diminution stable ou instable",
|
|
115
|
+
"stable ou augmentation puis diminution; ou diminution puis diminution plus rapide",
|
|
116
|
+
],
|
|
117
|
+
BASED: "basée",
|
|
118
|
+
Ceiling: {
|
|
119
|
+
Height: "variation du plafond entre {0} et {1} pieds",
|
|
120
|
+
Second: {
|
|
121
|
+
Location: "plafond de {0} pieds mesuré par un second capteur situé à {1}",
|
|
122
|
+
},
|
|
123
|
+
},
|
|
124
|
+
DSNT: "éloigné",
|
|
125
|
+
FCST: "prévision",
|
|
126
|
+
FUNNELCLOUD: "nuage en entonnoir",
|
|
127
|
+
Hail: {
|
|
128
|
+
"0": "les plus gros grêlons ont un diamètre de {0} pouces",
|
|
129
|
+
LesserThan: "les plus gros grêlons ont un diamètre plus petit que {0} pouces",
|
|
130
|
+
},
|
|
131
|
+
Hourly: {
|
|
132
|
+
Maximum: {
|
|
133
|
+
Temperature: "température maximale sur 6 heures de {0}°C",
|
|
134
|
+
Minimum: {
|
|
135
|
+
Temperature: "Température maximale sur 24 heures de {0}°C et température minimale sur 24 heures de {1}°C",
|
|
136
|
+
},
|
|
137
|
+
},
|
|
138
|
+
Minimum: {
|
|
139
|
+
Temperature: "Température minimale sur 6 heures de {0}°C",
|
|
140
|
+
},
|
|
141
|
+
Temperature: {
|
|
142
|
+
"0": "température horaire de {0}°C",
|
|
143
|
+
Dew: {
|
|
144
|
+
Point: "température horaire de {0}°C et point de rosée de {1}°C",
|
|
145
|
+
},
|
|
146
|
+
},
|
|
147
|
+
},
|
|
148
|
+
Ice: {
|
|
149
|
+
Accretion: {
|
|
150
|
+
Amount: "{0}/100 d''un pouce d''accrétion de glace au cours des {1} dernières heures",
|
|
151
|
+
},
|
|
152
|
+
},
|
|
153
|
+
HVY: "fort",
|
|
154
|
+
LGT: "léger",
|
|
155
|
+
LTG: "éclair",
|
|
156
|
+
MOD: "modéré",
|
|
157
|
+
Obscuration: "couche de {0} à {1} pieds composée de {2}",
|
|
158
|
+
ON: "sur",
|
|
159
|
+
NXT: "prochain",
|
|
160
|
+
PeakWind: "vent de pointe de {1} noeuds en provenance de {0} degrés à {2}:{3}",
|
|
161
|
+
Precipitation: {
|
|
162
|
+
Amount: {
|
|
163
|
+
Hourly: "{0}/100 d''un pouce de précipitation est tombé au cours de la dernière heure",
|
|
164
|
+
"3": {
|
|
165
|
+
"6": "{1} pouces de précipitations tombées au cours des {0} dernières heures",
|
|
166
|
+
},
|
|
167
|
+
"24": "{0} pouces de précipitations tombées au cours des 24 dernières heures",
|
|
168
|
+
},
|
|
169
|
+
Beg: {
|
|
170
|
+
"0": "{0} {1} commençant à {2}:{3}",
|
|
171
|
+
End: "{0} {1} commencant à {2}:{3} finissant à {4}:{5}",
|
|
172
|
+
},
|
|
173
|
+
End: "{0} {1} se terminant à {2}:{3}",
|
|
174
|
+
},
|
|
175
|
+
Pressure: {
|
|
176
|
+
Tendency: "de {0} hectopascals au cours des 3 dernières heures",
|
|
177
|
+
},
|
|
178
|
+
PRESFR: "diminution rapide de la pression",
|
|
179
|
+
PRESRR: "augmentation rapide de la pression",
|
|
180
|
+
Second: {
|
|
181
|
+
Location: {
|
|
182
|
+
Visibility: "visibilité de {0} SM mesuré par un capteur situé à {1}",
|
|
183
|
+
},
|
|
184
|
+
},
|
|
185
|
+
Sea: {
|
|
186
|
+
Level: {
|
|
187
|
+
Pressure: "pression au niveau de la mer de {0} HPa",
|
|
188
|
+
},
|
|
189
|
+
},
|
|
190
|
+
Sector: {
|
|
191
|
+
Visibility: "visibilité de {1} SM dans la direction {0}",
|
|
192
|
+
},
|
|
193
|
+
SLPNO: "pression au niveau de la mer non disponible",
|
|
194
|
+
Snow: {
|
|
195
|
+
Depth: "profondeur de neige de {0} pouces",
|
|
196
|
+
Increasing: {
|
|
197
|
+
Rapidly: "épaisseur de neige de {0} pouces sur la dernière heure avec une épaisseur totale au sol de {1} pouces",
|
|
198
|
+
},
|
|
199
|
+
Pellets: "{0} grésil",
|
|
200
|
+
},
|
|
201
|
+
Sunshine: {
|
|
202
|
+
Duration: "{0} minutes d''ensoleillement",
|
|
203
|
+
},
|
|
204
|
+
Surface: {
|
|
205
|
+
Visibility: "visibility de surface de {0} miles",
|
|
206
|
+
},
|
|
207
|
+
Thunderstorm: {
|
|
208
|
+
Location: {
|
|
209
|
+
"0": "orage se situant {0} de la station",
|
|
210
|
+
Moving: "orage se situant {0} de la station se déplacant vers {1}",
|
|
211
|
+
},
|
|
212
|
+
},
|
|
213
|
+
Tornadic: {
|
|
214
|
+
Activity: {
|
|
215
|
+
Beginning: "{0} commencant à {1}:{2} {3} SM {4} de la station",
|
|
216
|
+
BegEnd: "{0} commencant à {1}:{2} finissant à {3}:{4} {5} SM {6} de la station",
|
|
217
|
+
Ending: "{0} finissant à {1}:{2} {3} SM {4} de la station",
|
|
218
|
+
},
|
|
219
|
+
},
|
|
220
|
+
TORNADO: "tornade",
|
|
221
|
+
Tower: {
|
|
222
|
+
Visibility: "visibility de la tour de contrôle de {0} miles",
|
|
223
|
+
},
|
|
224
|
+
Variable: {
|
|
225
|
+
Prevailing: {
|
|
226
|
+
Visibility: "variation de la visibilité dominante entre {0} et {1} SM",
|
|
227
|
+
},
|
|
228
|
+
Sky: {
|
|
229
|
+
Condition: {
|
|
230
|
+
"0": "couche de nuages variant entre {0} et {1}",
|
|
231
|
+
Height: "couche de nuages à {0} pieds variant entre {1} et {2}",
|
|
232
|
+
},
|
|
233
|
+
},
|
|
234
|
+
},
|
|
235
|
+
Virga: {
|
|
236
|
+
Direction: "virga au {0} de la station",
|
|
237
|
+
},
|
|
238
|
+
WATERSPOUT: "trombe",
|
|
239
|
+
Water: {
|
|
240
|
+
Equivalent: {
|
|
241
|
+
Snow: {
|
|
242
|
+
Ground: "équivalent d''eau de {0} pouces de neige",
|
|
243
|
+
},
|
|
244
|
+
},
|
|
245
|
+
},
|
|
246
|
+
WindShift: {
|
|
247
|
+
"0": "changement de vent à {0}:{1}",
|
|
248
|
+
FROPA: "changement de vent accompagné d''un passage de front à {0}:{1}",
|
|
249
|
+
},
|
|
250
|
+
},
|
|
251
|
+
MetarFacade: {
|
|
252
|
+
InvalidIcao: "Code ICAO invalide.",
|
|
253
|
+
},
|
|
254
|
+
Converter: {
|
|
255
|
+
D: "decroissant",
|
|
256
|
+
E: "Est",
|
|
257
|
+
ENE: "Est Nord Est",
|
|
258
|
+
ESE: "Est Sud Est",
|
|
259
|
+
N: "Nord",
|
|
260
|
+
NE: "Nord Est",
|
|
261
|
+
NNE: "Nord Nord Est",
|
|
262
|
+
NNW: "Nord Nord Ouest",
|
|
263
|
+
NSC: "Aucun changement significatif",
|
|
264
|
+
NW: "Nord Ouest",
|
|
265
|
+
S: "Est",
|
|
266
|
+
SE: "Sud Est",
|
|
267
|
+
SSE: "Sud Sud Est",
|
|
268
|
+
SSW: "Sud Sud Ouest",
|
|
269
|
+
SW: "Sud Ouest",
|
|
270
|
+
U: "accroissement",
|
|
271
|
+
W: "Ouest",
|
|
272
|
+
WNW: "Ouest Nord Ouest",
|
|
273
|
+
WSW: "Ouest Sud Ouest",
|
|
274
|
+
},
|
|
275
|
+
WeatherChangeType: {
|
|
276
|
+
FM: "De",
|
|
277
|
+
BECMG: "Devenant",
|
|
278
|
+
TEMPO: "Temporairement",
|
|
279
|
+
PROB: "Probabilité",
|
|
280
|
+
},
|
|
281
|
+
TimeIndicator: {
|
|
282
|
+
AT: "à",
|
|
283
|
+
FM: "De",
|
|
284
|
+
TL: "jusqu'à",
|
|
285
|
+
},
|
|
286
|
+
ToString: {
|
|
287
|
+
airport: "aéroport",
|
|
288
|
+
altimeter: "altimètre (hPa)",
|
|
289
|
+
amendment: "amendement",
|
|
290
|
+
clouds: "nuages",
|
|
291
|
+
day: {
|
|
292
|
+
month: "jour du mois",
|
|
293
|
+
hour: "heure du jour",
|
|
294
|
+
},
|
|
295
|
+
deposit: {
|
|
296
|
+
braking: "capacité de freinage",
|
|
297
|
+
coverage: "couverture",
|
|
298
|
+
thickness: "épaisseur",
|
|
299
|
+
type: "type dépôt",
|
|
300
|
+
},
|
|
301
|
+
descriptive: "descriptif",
|
|
302
|
+
dew: {
|
|
303
|
+
point: "point de rosée",
|
|
304
|
+
},
|
|
305
|
+
end: {
|
|
306
|
+
day: {
|
|
307
|
+
month: "jour de fin du mois",
|
|
308
|
+
},
|
|
309
|
+
hour: {
|
|
310
|
+
day: "heure de fin du jour",
|
|
311
|
+
},
|
|
312
|
+
},
|
|
313
|
+
height: {
|
|
314
|
+
feet: "altitude (pieds)",
|
|
315
|
+
meter: "altitude (m)",
|
|
316
|
+
},
|
|
317
|
+
intensity: "intensité",
|
|
318
|
+
indicator: "indicateur",
|
|
319
|
+
message: "message original",
|
|
320
|
+
name: "nom",
|
|
321
|
+
phenomenons: "phénomènes",
|
|
322
|
+
probability: "probabilité",
|
|
323
|
+
quantity: "quantité",
|
|
324
|
+
remark: "remarques",
|
|
325
|
+
report: {
|
|
326
|
+
time: "heure du rapport",
|
|
327
|
+
},
|
|
328
|
+
runway: {
|
|
329
|
+
info: "informations sur la piste",
|
|
330
|
+
},
|
|
331
|
+
start: {
|
|
332
|
+
day: {
|
|
333
|
+
month: "jour de début du mois",
|
|
334
|
+
},
|
|
335
|
+
hour: {
|
|
336
|
+
day: "heure de début du jour",
|
|
337
|
+
},
|
|
338
|
+
minute: "minute de début",
|
|
339
|
+
},
|
|
340
|
+
temperature: {
|
|
341
|
+
"0": "température (°C)",
|
|
342
|
+
max: "température maximale (°C)",
|
|
343
|
+
min: "température minimale (°C)",
|
|
344
|
+
},
|
|
345
|
+
trend: "tendance",
|
|
346
|
+
trends: "tendances",
|
|
347
|
+
visibility: {
|
|
348
|
+
main: "visibilité principale",
|
|
349
|
+
min: {
|
|
350
|
+
"0": "visibilité minimale",
|
|
351
|
+
direction: "direction de la visibilité minimale",
|
|
352
|
+
},
|
|
353
|
+
max: "visibilité maximale",
|
|
354
|
+
},
|
|
355
|
+
vertical: {
|
|
356
|
+
visibility: "visibilité verticale (pieds)",
|
|
357
|
+
},
|
|
358
|
+
weather: {
|
|
359
|
+
conditions: "conditions météorologique",
|
|
360
|
+
},
|
|
361
|
+
wind: {
|
|
362
|
+
direction: {
|
|
363
|
+
degrees: "direction (degrés)",
|
|
364
|
+
},
|
|
365
|
+
gusts: "rafales",
|
|
366
|
+
min: {
|
|
367
|
+
variation: "variation minimale du vent",
|
|
368
|
+
},
|
|
369
|
+
max: {
|
|
370
|
+
variation: "variation maximale du vent",
|
|
371
|
+
},
|
|
372
|
+
speed: "vitesse",
|
|
373
|
+
unit: "unité",
|
|
374
|
+
},
|
|
375
|
+
},
|
|
376
|
+
};
|
|
@@ -0,0 +1,337 @@
|
|
|
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
|
+
WET_SNOW: string;
|
|
83
|
+
WET_WATER_PATCHES: string;
|
|
84
|
+
};
|
|
85
|
+
Descriptive: {
|
|
86
|
+
BC: string;
|
|
87
|
+
BL: string;
|
|
88
|
+
DR: string;
|
|
89
|
+
FZ: string;
|
|
90
|
+
MI: string;
|
|
91
|
+
PR: string;
|
|
92
|
+
SH: string;
|
|
93
|
+
TS: string;
|
|
94
|
+
};
|
|
95
|
+
Error: {
|
|
96
|
+
prefix: string;
|
|
97
|
+
};
|
|
98
|
+
ErrorCode: {
|
|
99
|
+
AirportNotFound: string;
|
|
100
|
+
InvalidMessage: string;
|
|
101
|
+
};
|
|
102
|
+
Indicator: {
|
|
103
|
+
M: string;
|
|
104
|
+
P: string;
|
|
105
|
+
};
|
|
106
|
+
Intensity: {
|
|
107
|
+
"-": string;
|
|
108
|
+
VC: string;
|
|
109
|
+
};
|
|
110
|
+
"intensity-plus": string;
|
|
111
|
+
MetarFacade: {
|
|
112
|
+
InvalidIcao: string;
|
|
113
|
+
};
|
|
114
|
+
Phenomenon: {
|
|
115
|
+
BR: string;
|
|
116
|
+
DS: string;
|
|
117
|
+
DU: string;
|
|
118
|
+
DZ: string;
|
|
119
|
+
FC: string;
|
|
120
|
+
FG: string;
|
|
121
|
+
FU: string;
|
|
122
|
+
GR: string;
|
|
123
|
+
GS: string;
|
|
124
|
+
HZ: string;
|
|
125
|
+
IC: string;
|
|
126
|
+
PL: string;
|
|
127
|
+
PO: string;
|
|
128
|
+
PY: string;
|
|
129
|
+
RA: string;
|
|
130
|
+
SA: string;
|
|
131
|
+
SG: string;
|
|
132
|
+
SN: string;
|
|
133
|
+
SQ: string;
|
|
134
|
+
SS: string;
|
|
135
|
+
TS: string;
|
|
136
|
+
UP: string;
|
|
137
|
+
VA: string;
|
|
138
|
+
};
|
|
139
|
+
Remark: {
|
|
140
|
+
AO1: string;
|
|
141
|
+
AO2: string;
|
|
142
|
+
BASED: string;
|
|
143
|
+
Ceiling: {
|
|
144
|
+
Height: string;
|
|
145
|
+
Second: {
|
|
146
|
+
Location: string;
|
|
147
|
+
};
|
|
148
|
+
};
|
|
149
|
+
FCST: string;
|
|
150
|
+
FUNNELCLOUD: string;
|
|
151
|
+
Hail: {
|
|
152
|
+
"0": string;
|
|
153
|
+
LesserThan: string;
|
|
154
|
+
};
|
|
155
|
+
HVY: string;
|
|
156
|
+
LGT: string;
|
|
157
|
+
MOD: string;
|
|
158
|
+
NXT: string;
|
|
159
|
+
Obscuration: string;
|
|
160
|
+
ON: string;
|
|
161
|
+
PeakWind: string;
|
|
162
|
+
Precipitation: {
|
|
163
|
+
Beg: {
|
|
164
|
+
End: string;
|
|
165
|
+
};
|
|
166
|
+
};
|
|
167
|
+
PRESFR: string;
|
|
168
|
+
PRESRR: string;
|
|
169
|
+
Sea: {
|
|
170
|
+
Level: {
|
|
171
|
+
Pressure: string;
|
|
172
|
+
};
|
|
173
|
+
};
|
|
174
|
+
Second: {
|
|
175
|
+
Location: {
|
|
176
|
+
Visibility: string;
|
|
177
|
+
};
|
|
178
|
+
};
|
|
179
|
+
Sector: {
|
|
180
|
+
Visibility: string;
|
|
181
|
+
};
|
|
182
|
+
SLPNO: string;
|
|
183
|
+
Snow: {
|
|
184
|
+
Increasing: {
|
|
185
|
+
Rapidly: string;
|
|
186
|
+
};
|
|
187
|
+
Pellets: string;
|
|
188
|
+
};
|
|
189
|
+
Surface: {
|
|
190
|
+
Visibility: string;
|
|
191
|
+
};
|
|
192
|
+
Thunderstorm: {
|
|
193
|
+
Location: {
|
|
194
|
+
"0": string;
|
|
195
|
+
Moving: string;
|
|
196
|
+
};
|
|
197
|
+
};
|
|
198
|
+
Tornadic: {
|
|
199
|
+
Activity: {
|
|
200
|
+
BegEnd: string;
|
|
201
|
+
Beginning: string;
|
|
202
|
+
Ending: string;
|
|
203
|
+
};
|
|
204
|
+
};
|
|
205
|
+
TORNADO: string;
|
|
206
|
+
Tower: {
|
|
207
|
+
Visibility: string;
|
|
208
|
+
};
|
|
209
|
+
Variable: {
|
|
210
|
+
Prevailing: {
|
|
211
|
+
Visibility: string;
|
|
212
|
+
};
|
|
213
|
+
Sky: {
|
|
214
|
+
Condition: {
|
|
215
|
+
"0": string;
|
|
216
|
+
Height: string;
|
|
217
|
+
};
|
|
218
|
+
};
|
|
219
|
+
};
|
|
220
|
+
VIRGA: string;
|
|
221
|
+
Virga: {
|
|
222
|
+
Direction: string;
|
|
223
|
+
};
|
|
224
|
+
WATERSPOUT: string;
|
|
225
|
+
WindShift: {
|
|
226
|
+
"0": string;
|
|
227
|
+
FROPA: string;
|
|
228
|
+
};
|
|
229
|
+
};
|
|
230
|
+
TimeIndicator: {
|
|
231
|
+
AT: string;
|
|
232
|
+
FM: string;
|
|
233
|
+
TL: string;
|
|
234
|
+
};
|
|
235
|
+
ToString: {
|
|
236
|
+
airport: string;
|
|
237
|
+
altimeter: string;
|
|
238
|
+
amendment: string;
|
|
239
|
+
auto: string;
|
|
240
|
+
cavok: string;
|
|
241
|
+
clouds: string;
|
|
242
|
+
day: {
|
|
243
|
+
hour: string;
|
|
244
|
+
month: string;
|
|
245
|
+
};
|
|
246
|
+
deposit: {
|
|
247
|
+
braking: string;
|
|
248
|
+
coverage: string;
|
|
249
|
+
thickness: string;
|
|
250
|
+
type: string;
|
|
251
|
+
};
|
|
252
|
+
descriptive: string;
|
|
253
|
+
dew: {
|
|
254
|
+
point: string;
|
|
255
|
+
};
|
|
256
|
+
end: {
|
|
257
|
+
day: {
|
|
258
|
+
month: string;
|
|
259
|
+
};
|
|
260
|
+
hour: {
|
|
261
|
+
day: string;
|
|
262
|
+
};
|
|
263
|
+
};
|
|
264
|
+
height: {
|
|
265
|
+
feet: string;
|
|
266
|
+
meter: string;
|
|
267
|
+
};
|
|
268
|
+
indicator: string;
|
|
269
|
+
intensity: string;
|
|
270
|
+
message: string;
|
|
271
|
+
name: string;
|
|
272
|
+
nosig: string;
|
|
273
|
+
phenomenons: string;
|
|
274
|
+
probability: string;
|
|
275
|
+
quantity: string;
|
|
276
|
+
remark: string;
|
|
277
|
+
report: {
|
|
278
|
+
time: string;
|
|
279
|
+
};
|
|
280
|
+
runway: {
|
|
281
|
+
info: string;
|
|
282
|
+
};
|
|
283
|
+
start: {
|
|
284
|
+
day: {
|
|
285
|
+
month: string;
|
|
286
|
+
};
|
|
287
|
+
hour: {
|
|
288
|
+
day: string;
|
|
289
|
+
};
|
|
290
|
+
minute: string;
|
|
291
|
+
};
|
|
292
|
+
temperature: {
|
|
293
|
+
"0": string;
|
|
294
|
+
max: string;
|
|
295
|
+
min: string;
|
|
296
|
+
};
|
|
297
|
+
trend: string;
|
|
298
|
+
trends: string;
|
|
299
|
+
type: string;
|
|
300
|
+
vertical: {
|
|
301
|
+
visibility: string;
|
|
302
|
+
};
|
|
303
|
+
visibility: {
|
|
304
|
+
main: string;
|
|
305
|
+
max: string;
|
|
306
|
+
min: {
|
|
307
|
+
"0": string;
|
|
308
|
+
direction: string;
|
|
309
|
+
};
|
|
310
|
+
};
|
|
311
|
+
weather: {
|
|
312
|
+
conditions: string;
|
|
313
|
+
};
|
|
314
|
+
wind: {
|
|
315
|
+
direction: {
|
|
316
|
+
"0": string;
|
|
317
|
+
degrees: string;
|
|
318
|
+
};
|
|
319
|
+
gusts: string;
|
|
320
|
+
max: {
|
|
321
|
+
variation: string;
|
|
322
|
+
};
|
|
323
|
+
min: {
|
|
324
|
+
variation: string;
|
|
325
|
+
};
|
|
326
|
+
speed: string;
|
|
327
|
+
unit: string;
|
|
328
|
+
};
|
|
329
|
+
};
|
|
330
|
+
WeatherChangeType: {
|
|
331
|
+
BECMG: string;
|
|
332
|
+
FM: string;
|
|
333
|
+
PROB: string;
|
|
334
|
+
TEMPO: string;
|
|
335
|
+
};
|
|
336
|
+
};
|
|
337
|
+
export default _default;
|