metar-taf-parser 1.2.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +85 -12
- package/dist/command/common.js +13 -10
- package/dist/command/metar/AltimeterCommand.d.ts +7 -0
- package/dist/command/metar/AltimeterCommand.js +26 -0
- package/dist/command/metar/AltimeterMercuryCommand.d.ts +7 -0
- package/dist/command/metar/AltimeterMercuryCommand.js +51 -0
- package/dist/command/metar/RunwayCommand.d.ts +7 -0
- package/dist/command/metar/RunwayCommand.js +60 -0
- package/dist/command/metar/TemperatureCommand.d.ts +7 -0
- package/dist/command/metar/TemperatureCommand.js +51 -0
- package/dist/command/metar.d.ts +1 -22
- package/dist/command/metar.js +10 -113
- package/dist/command/remark/CeilingHeightCommand.d.ts +18 -0
- package/dist/command/remark/CeilingHeightCommand.js +40 -0
- package/dist/command/remark/CeilingSecondLocationCommand.d.ts +12 -0
- package/dist/command/remark/CeilingSecondLocationCommand.js +40 -0
- package/dist/command/remark/Command.d.ts +8 -0
- package/dist/command/remark/Command.js +9 -0
- package/dist/command/remark/DefaultCommand.d.ts +11 -0
- package/dist/command/remark/DefaultCommand.js +38 -0
- package/dist/command/remark/HailSizeCommand.d.ts +11 -0
- package/dist/command/remark/HailSizeCommand.js +37 -0
- package/dist/command/remark/HourlyMaximumMinimumTemperatureCommand.d.ts +18 -0
- package/dist/command/remark/HourlyMaximumMinimumTemperatureCommand.js +39 -0
- package/dist/command/remark/HourlyMaximumTemperatureCommand.d.ts +14 -0
- package/dist/command/remark/HourlyMaximumTemperatureCommand.js +38 -0
- package/dist/command/remark/HourlyMinimumTemperatureCommand.d.ts +14 -0
- package/dist/command/remark/HourlyMinimumTemperatureCommand.js +38 -0
- package/dist/command/remark/HourlyPrecipitationAmountCommand.d.ts +14 -0
- package/dist/command/remark/HourlyPrecipitationAmountCommand.js +38 -0
- package/dist/command/remark/HourlyPressureCommand.d.ts +32 -0
- package/dist/command/remark/HourlyPressureCommand.js +40 -0
- package/dist/command/remark/HourlyTemperatureDewPointCommand.d.ts +18 -0
- package/dist/command/remark/HourlyTemperatureDewPointCommand.js +52 -0
- package/dist/command/remark/IceAccretionCommand.d.ts +15 -0
- package/dist/command/remark/IceAccretionCommand.js +38 -0
- package/dist/command/remark/ObscurationCommand.d.ts +14 -0
- package/dist/command/remark/ObscurationCommand.js +44 -0
- package/dist/command/remark/PrecipitationAmount24HourCommand.d.ts +14 -0
- package/dist/command/remark/PrecipitationAmount24HourCommand.js +39 -0
- package/dist/command/remark/PrecipitationAmount36HourCommand.d.ts +15 -0
- package/dist/command/remark/PrecipitationAmount36HourCommand.js +41 -0
- package/dist/command/remark/PrecipitationBegCommand.d.ts +15 -0
- package/dist/command/remark/PrecipitationBegCommand.js +45 -0
- package/dist/command/remark/PrecipitationBegEndCommand.d.ts +17 -0
- package/dist/command/remark/PrecipitationBegEndCommand.js +46 -0
- package/dist/command/remark/PrecipitationEndCommand.d.ts +15 -0
- package/dist/command/remark/PrecipitationEndCommand.js +45 -0
- package/dist/command/remark/PrevailingVisibilityCommand.d.ts +12 -0
- package/dist/command/remark/PrevailingVisibilityCommand.js +40 -0
- package/dist/command/remark/SeaLevelPressureCommand.d.ts +11 -0
- package/dist/command/remark/SeaLevelPressureCommand.js +39 -0
- package/dist/command/remark/SecondLocationVisibilityCommand.d.ts +12 -0
- package/dist/command/remark/SecondLocationVisibilityCommand.js +40 -0
- package/dist/command/remark/SectorVisibilityCommand.d.ts +13 -0
- package/dist/command/remark/SectorVisibilityCommand.js +41 -0
- package/dist/command/remark/SmallHailSizeCommand.d.ts +11 -0
- package/dist/command/remark/SmallHailSizeCommand.js +37 -0
- package/dist/command/remark/SnowDepthCommand.d.ts +11 -0
- package/dist/command/remark/SnowDepthCommand.js +38 -0
- package/dist/command/remark/SnowIncreaseCommand.d.ts +12 -0
- package/dist/command/remark/SnowIncreaseCommand.js +40 -0
- package/dist/command/remark/SnowPelletsCommand.d.ts +11 -0
- package/dist/command/remark/SnowPelletsCommand.js +37 -0
- package/dist/command/remark/SunshineDurationCommand.d.ts +11 -0
- package/dist/command/remark/SunshineDurationCommand.js +38 -0
- package/dist/command/remark/SurfaceVisibilityCommand.d.ts +11 -0
- package/dist/command/remark/SurfaceVisibilityCommand.js +38 -0
- package/dist/command/remark/ThunderStormLocationCommand.d.ts +12 -0
- package/dist/command/remark/ThunderStormLocationCommand.js +40 -0
- package/dist/command/remark/ThunderStormLocationMovingCommand.d.ts +19 -0
- package/dist/command/remark/ThunderStormLocationMovingCommand.js +42 -0
- package/dist/command/remark/TornadicActivityBegCommand.d.ts +16 -0
- package/dist/command/remark/TornadicActivityBegCommand.js +44 -0
- package/dist/command/remark/TornadicActivityBegEndCommand.d.ts +18 -0
- package/dist/command/remark/TornadicActivityBegEndCommand.js +46 -0
- package/dist/command/remark/TornadicActivityEndCommand.d.ts +16 -0
- package/dist/command/remark/TornadicActivityEndCommand.js +44 -0
- package/dist/command/remark/TowerVisibilityCommand.d.ts +11 -0
- package/dist/command/remark/TowerVisibilityCommand.js +38 -0
- package/dist/command/remark/VariableSkyCommand.d.ts +12 -0
- package/dist/command/remark/VariableSkyCommand.js +41 -0
- package/dist/command/remark/VariableSkyHeightCommand.d.ts +13 -0
- package/dist/command/remark/VariableSkyHeightCommand.js +43 -0
- package/dist/command/remark/VirgaDirectionCommand.d.ts +12 -0
- package/dist/command/remark/VirgaDirectionCommand.js +40 -0
- package/dist/command/remark/WaterEquivalentSnowCommand.d.ts +11 -0
- package/dist/command/remark/WaterEquivalentSnowCommand.js +38 -0
- package/dist/command/remark/WindPeakCommandCommand.d.ts +17 -0
- package/dist/command/remark/WindPeakCommandCommand.js +42 -0
- package/dist/command/remark/WindShiftCommand.d.ts +12 -0
- package/dist/command/remark/WindShiftCommand.js +38 -0
- package/dist/command/remark/WindShiftFropaCommand.d.ts +12 -0
- package/dist/command/remark/WindShiftFropaCommand.js +38 -0
- package/dist/command/remark.d.ts +100 -194
- package/dist/command/remark.js +135 -753
- package/dist/commons/converter.d.ts +14 -2
- package/dist/commons/converter.js +53 -5
- package/dist/commons/errors.d.ts +6 -2
- package/dist/commons/errors.js +15 -8
- package/dist/commons/i18n.d.ts +2 -2
- package/dist/commons/i18n.js +9 -3
- package/dist/dates/metar.d.ts +5 -0
- package/dist/dates/metar.js +8 -0
- package/dist/dates/taf.d.ts +28 -0
- package/dist/dates/taf.js +17 -0
- package/dist/forecast/forecast.d.ts +36 -0
- package/dist/forecast/forecast.js +73 -0
- package/dist/helpers/date.d.ts +11 -0
- package/dist/helpers/date.js +56 -0
- package/dist/helpers/helpers.d.ts +7 -0
- package/dist/helpers/helpers.js +14 -1
- package/dist/index.d.ts +23 -2
- package/dist/index.js +24 -7
- package/dist/model/enum.d.ts +44 -0
- package/dist/model/enum.js +50 -1
- package/dist/model/model.d.ts +84 -19
- package/dist/model/model.js +3 -1
- package/dist/parser/parser.d.ts +13 -6
- package/dist/parser/parser.js +63 -29
- package/package.json +3 -3
package/dist/command/remark.d.ts
CHANGED
|
@@ -1,198 +1,53 @@
|
|
|
1
1
|
import { Locale } from "../commons/i18n";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
43
|
-
export
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
52
|
-
}
|
|
53
|
-
export declare class IceAccretionCommand extends Command {
|
|
54
|
-
#private;
|
|
55
|
-
canParse(code: string): boolean;
|
|
56
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
57
|
-
}
|
|
58
|
-
export declare class ObscurationCommand extends Command {
|
|
59
|
-
#private;
|
|
60
|
-
canParse(code: string): boolean;
|
|
61
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
62
|
-
}
|
|
63
|
-
export declare class PrecipitationAmount24HourCommand extends Command {
|
|
64
|
-
#private;
|
|
65
|
-
canParse(code: string): boolean;
|
|
66
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
67
|
-
}
|
|
68
|
-
export declare class PrecipitationAmount36HourCommand extends Command {
|
|
69
|
-
#private;
|
|
70
|
-
canParse(code: string): boolean;
|
|
71
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
72
|
-
}
|
|
73
|
-
export declare class PrecipitationBegEndCommand extends Command {
|
|
74
|
-
#private;
|
|
75
|
-
canParse(code: string): boolean;
|
|
76
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
77
|
-
}
|
|
78
|
-
export declare class PrevailingVisibilityCommand extends Command {
|
|
79
|
-
#private;
|
|
80
|
-
canParse(code: string): boolean;
|
|
81
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
82
|
-
}
|
|
83
|
-
export declare class SeaLevelPressureCommand extends Command {
|
|
84
|
-
#private;
|
|
85
|
-
canParse(code: string): boolean;
|
|
86
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
87
|
-
}
|
|
88
|
-
export declare class SecondLocationVisibilityCommand extends Command {
|
|
89
|
-
#private;
|
|
90
|
-
canParse(code: string): boolean;
|
|
91
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
92
|
-
}
|
|
93
|
-
export declare class SectorVisibilityCommand extends Command {
|
|
94
|
-
#private;
|
|
95
|
-
canParse(code: string): boolean;
|
|
96
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
97
|
-
}
|
|
98
|
-
export declare class SmallHailSizeCommand extends Command {
|
|
99
|
-
#private;
|
|
100
|
-
canParse(code: string): boolean;
|
|
101
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
102
|
-
}
|
|
103
|
-
export declare class SnowDepthCommand extends Command {
|
|
104
|
-
#private;
|
|
105
|
-
canParse(code: string): boolean;
|
|
106
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
107
|
-
}
|
|
108
|
-
export declare class SnowIncreaseCommand extends Command {
|
|
109
|
-
#private;
|
|
110
|
-
canParse(code: string): boolean;
|
|
111
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
112
|
-
}
|
|
113
|
-
export declare class SnowPelletsCommand extends Command {
|
|
114
|
-
#private;
|
|
115
|
-
canParse(code: string): boolean;
|
|
116
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
117
|
-
}
|
|
118
|
-
export declare class SunshineDurationCommand extends Command {
|
|
119
|
-
#private;
|
|
120
|
-
canParse(code: string): boolean;
|
|
121
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
122
|
-
}
|
|
123
|
-
export declare class SurfaceVisibilityCommand extends Command {
|
|
124
|
-
#private;
|
|
125
|
-
canParse(code: string): boolean;
|
|
126
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
127
|
-
}
|
|
128
|
-
export declare class ThunderStormLocationCommand extends Command {
|
|
129
|
-
#private;
|
|
130
|
-
canParse(code: string): boolean;
|
|
131
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
132
|
-
}
|
|
133
|
-
export declare class ThunderStormLocationMovingCommand extends Command {
|
|
134
|
-
#private;
|
|
135
|
-
canParse(code: string): boolean;
|
|
136
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
137
|
-
}
|
|
138
|
-
export declare class TornadicActivityBegCommand extends Command {
|
|
139
|
-
#private;
|
|
140
|
-
canParse(code: string): boolean;
|
|
141
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
142
|
-
}
|
|
143
|
-
export declare class TornadicActivityBegEndCommand extends Command {
|
|
144
|
-
#private;
|
|
145
|
-
canParse(code: string): boolean;
|
|
146
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
147
|
-
}
|
|
148
|
-
export declare class TornadicActivityEndCommand extends Command {
|
|
149
|
-
#private;
|
|
150
|
-
canParse(code: string): boolean;
|
|
151
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
152
|
-
}
|
|
153
|
-
export declare class TowerVisibilityCommand extends Command {
|
|
154
|
-
#private;
|
|
155
|
-
canParse(code: string): boolean;
|
|
156
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
157
|
-
}
|
|
158
|
-
export declare class VariableSkyCommand extends Command {
|
|
159
|
-
#private;
|
|
160
|
-
canParse(code: string): boolean;
|
|
161
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
162
|
-
}
|
|
163
|
-
export declare class VariableSkyHeightCommand extends Command {
|
|
164
|
-
#private;
|
|
165
|
-
canParse(code: string): boolean;
|
|
166
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
167
|
-
}
|
|
168
|
-
export declare class VirgaDirectionCommand extends Command {
|
|
169
|
-
#private;
|
|
170
|
-
canParse(code: string): boolean;
|
|
171
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
172
|
-
}
|
|
173
|
-
export declare class WaterEquivalentSnowCommand extends Command {
|
|
174
|
-
#private;
|
|
175
|
-
canParse(code: string): boolean;
|
|
176
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
177
|
-
}
|
|
178
|
-
export declare class WindPeakCommand extends Command {
|
|
179
|
-
#private;
|
|
180
|
-
canParse(code: string): boolean;
|
|
181
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
182
|
-
}
|
|
183
|
-
export declare class WindShiftCommand extends Command {
|
|
184
|
-
#private;
|
|
185
|
-
canParse(code: string): boolean;
|
|
186
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
187
|
-
}
|
|
188
|
-
export declare class WindShiftFropaCommand extends Command {
|
|
189
|
-
#private;
|
|
190
|
-
canParse(code: string): boolean;
|
|
191
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
192
|
-
}
|
|
193
|
-
export declare class DefaultCommand extends Command {
|
|
194
|
-
canParse(): boolean;
|
|
195
|
-
execute(code: string, remark: string[]): [string, string[]];
|
|
2
|
+
import { ICeilingHeightRemark } from "./remark/CeilingHeightCommand";
|
|
3
|
+
import { ICeilingSecondLocationRemark } from "./remark/CeilingSecondLocationCommand";
|
|
4
|
+
import { IHailSizeRemark } from "./remark/HailSizeCommand";
|
|
5
|
+
import { IHourlyMaximumMinimumTemperatureRemark } from "./remark/HourlyMaximumMinimumTemperatureCommand";
|
|
6
|
+
import { IHourlyMaximumTemperatureRemark } from "./remark/HourlyMaximumTemperatureCommand";
|
|
7
|
+
import { IHourlyMinimumTemperatureRemark } from "./remark/HourlyMinimumTemperatureCommand";
|
|
8
|
+
import { IHourlyPrecipitationAmountRemark } from "./remark/HourlyPrecipitationAmountCommand";
|
|
9
|
+
import { IHourlyPressureRemark } from "./remark/HourlyPressureCommand";
|
|
10
|
+
import { IHourlyTemperatureDewPointRemark } from "./remark/HourlyTemperatureDewPointCommand";
|
|
11
|
+
import { IIceAccretionRemark } from "./remark/IceAccretionCommand";
|
|
12
|
+
import { IObscurationRemark } from "./remark/ObscurationCommand";
|
|
13
|
+
import { IPrecipitationAmount24HourRemark } from "./remark/PrecipitationAmount24HourCommand";
|
|
14
|
+
import { IPrecipitationAmount36HourRemark } from "./remark/PrecipitationAmount36HourCommand";
|
|
15
|
+
import { IPrecipitationBegEndRemark } from "./remark/PrecipitationBegEndCommand";
|
|
16
|
+
import { IPrevailingVisibilityRemark } from "./remark/PrevailingVisibilityCommand";
|
|
17
|
+
import { ISeaLevelPressureRemark } from "./remark/SeaLevelPressureCommand";
|
|
18
|
+
import { ISecondLocationVisibilityRemark } from "./remark/SecondLocationVisibilityCommand";
|
|
19
|
+
import { ISectorVisibilityRemark } from "./remark/SectorVisibilityCommand";
|
|
20
|
+
import { ISmallHailSizeRemark } from "./remark/SmallHailSizeCommand";
|
|
21
|
+
import { ISnowDepthRemark } from "./remark/SnowDepthCommand";
|
|
22
|
+
import { ISnowIncreaseRemark } from "./remark/SnowIncreaseCommand";
|
|
23
|
+
import { ISnowPelletsRemark } from "./remark/SnowPelletsCommand";
|
|
24
|
+
import { ISunshineDurationRemark } from "./remark/SunshineDurationCommand";
|
|
25
|
+
import { ISurfaceVisibilityRemark } from "./remark/SurfaceVisibilityCommand";
|
|
26
|
+
import { IThunderStormLocationRemark } from "./remark/ThunderStormLocationCommand";
|
|
27
|
+
import { IThunderStormLocationMovingRemark } from "./remark/ThunderStormLocationMovingCommand";
|
|
28
|
+
import { ITornadicActivityBegRemark } from "./remark/TornadicActivityBegCommand";
|
|
29
|
+
import { ITornadicActivityBegEndRemark } from "./remark/TornadicActivityBegEndCommand";
|
|
30
|
+
import { ITornadicActivityEndRemark } from "./remark/TornadicActivityEndCommand";
|
|
31
|
+
import { ITowerVisibilityRemark } from "./remark/TowerVisibilityCommand";
|
|
32
|
+
import { IVariableSkyRemark } from "./remark/VariableSkyCommand";
|
|
33
|
+
import { IVariableSkyHeightRemark } from "./remark/VariableSkyHeightCommand";
|
|
34
|
+
import { IVirgaDirectionRemark } from "./remark/VirgaDirectionCommand";
|
|
35
|
+
import { IWaterEquivalentSnowRemark } from "./remark/WaterEquivalentSnowCommand";
|
|
36
|
+
import { IWindPeakCommandRemark } from "./remark/WindPeakCommandCommand";
|
|
37
|
+
import { IWindShiftRemark } from "./remark/WindShiftCommand";
|
|
38
|
+
import { IWindShiftFropaRemark } from "./remark/WindShiftFropaCommand";
|
|
39
|
+
import { Command } from "./remark/Command";
|
|
40
|
+
import { IDefaultCommandRemark } from "./remark/DefaultCommand";
|
|
41
|
+
import { IPrecipitationBegRemark } from "./remark/PrecipitationBegCommand";
|
|
42
|
+
import { IPrecipitationEndRemark } from "./remark/PrecipitationEndCommand";
|
|
43
|
+
export type { ICeilingHeightRemark, ICeilingSecondLocationRemark, IHourlyMaximumMinimumTemperatureRemark, IHourlyMaximumTemperatureRemark, IHourlyMinimumTemperatureRemark, IHourlyPrecipitationAmountRemark, IHourlyPressureRemark, IHourlyTemperatureDewPointRemark, IIceAccretionRemark, IObscurationRemark, IPrecipitationAmount24HourRemark, IPrecipitationAmount36HourRemark, IPrecipitationBegEndRemark, IPrevailingVisibilityRemark, ISeaLevelPressureRemark, ISecondLocationVisibilityRemark, ISectorVisibilityRemark, ISmallHailSizeRemark, ISnowIncreaseRemark, ISnowPelletsRemark, ISunshineDurationRemark, ISurfaceVisibilityRemark, IThunderStormLocationRemark, IThunderStormLocationMovingRemark, ITornadicActivityBegRemark, ITornadicActivityBegEndRemark, ITornadicActivityEndRemark, ITowerVisibilityRemark, IVariableSkyRemark, IVariableSkyHeightRemark, IVirgaDirectionRemark, IWaterEquivalentSnowRemark, IWindPeakCommandRemark, IWindShiftFropaRemark, };
|
|
44
|
+
export interface IBaseRemark {
|
|
45
|
+
type: RemarkType;
|
|
46
|
+
description?: string;
|
|
47
|
+
raw: string;
|
|
48
|
+
}
|
|
49
|
+
export interface IUnknownRemark extends IBaseRemark {
|
|
50
|
+
type: RemarkType.Unknown;
|
|
196
51
|
}
|
|
197
52
|
export declare class RemarkCommandSupplier {
|
|
198
53
|
private locale;
|
|
@@ -201,3 +56,54 @@ export declare class RemarkCommandSupplier {
|
|
|
201
56
|
constructor(locale: Locale);
|
|
202
57
|
get(code: string): Command;
|
|
203
58
|
}
|
|
59
|
+
export declare enum RemarkType {
|
|
60
|
+
Unknown = "Unknown",
|
|
61
|
+
AO1 = "AO1",
|
|
62
|
+
AO2 = "AO2",
|
|
63
|
+
PRESFR = "PRESFR",
|
|
64
|
+
PRESRR = "PRESRR",
|
|
65
|
+
TORNADO = "TORNADO",
|
|
66
|
+
FUNNELCLOUD = "FUNNELCLOUD",
|
|
67
|
+
WATERSPOUT = "WATERSPOUT",
|
|
68
|
+
VIRGA = "VIRGA",
|
|
69
|
+
WindPeak = "WindPeak",
|
|
70
|
+
WindShiftFropa = "WindShiftFropa",
|
|
71
|
+
WindShift = "WindShift",
|
|
72
|
+
TowerVisibility = "TowerVisibility",
|
|
73
|
+
SurfaceVisibility = "SurfaceVisibility",
|
|
74
|
+
PrevailingVisibility = "PrevailingVisibility",
|
|
75
|
+
SecondLocationVisibility = "SecondLocationVisibility",
|
|
76
|
+
SectorVisibility = "SectorVisibility",
|
|
77
|
+
TornadicActivityBegEnd = "TornadicActivityBegEnd",
|
|
78
|
+
TornadicActivityBeg = "TornadicActivityBeg",
|
|
79
|
+
TornadicActivityEnd = "TornadicActivityEnd",
|
|
80
|
+
PrecipitationBeg = "PrecipitationBeg",
|
|
81
|
+
PrecipitationBegEnd = "PrecipitationBegEnd",
|
|
82
|
+
PrecipitationEnd = "PrecipitationEnd",
|
|
83
|
+
ThunderStormLocationMoving = "ThunderStormLocationMoving",
|
|
84
|
+
ThunderStormLocation = "ThunderStormLocation",
|
|
85
|
+
SmallHailSize = "SmallHailSize",
|
|
86
|
+
HailSize = "HailSize",
|
|
87
|
+
SnowPellets = "SnowPellets",
|
|
88
|
+
VirgaDirection = "VirgaDirection",
|
|
89
|
+
CeilingHeight = "CeilingHeight",
|
|
90
|
+
Obscuration = "Obscuration",
|
|
91
|
+
VariableSkyHeight = "VariableSkyHeight",
|
|
92
|
+
VariableSky = "VariableSky",
|
|
93
|
+
CeilingSecondLocation = "CeilingSecondLocation",
|
|
94
|
+
SeaLevelPressure = "SeaLevelPressure",
|
|
95
|
+
SnowIncrease = "SnowIncrease",
|
|
96
|
+
HourlyMaximumMinimumTemperature = "HourlyMaximumMinimumTemperature",
|
|
97
|
+
HourlyMaximumTemperature = "HourlyMaximumTemperature",
|
|
98
|
+
HourlyMinimumTemperature = "HourlyMinimumTemperature",
|
|
99
|
+
HourlyPrecipitationAmount = "HourlyPrecipitationAmount",
|
|
100
|
+
HourlyTemperatureDewPoint = "HourlyTemperatureDewPoint",
|
|
101
|
+
HourlyPressure = "HourlyPressure",
|
|
102
|
+
IceAccretion = "IceAccretion",
|
|
103
|
+
PrecipitationAmount36Hour = "PrecipitationAmount36Hour",
|
|
104
|
+
PrecipitationAmount24Hour = "PrecipitationAmount24Hour",
|
|
105
|
+
SnowDepth = "SnowDepth",
|
|
106
|
+
SunshineDuration = "SunshineDuration",
|
|
107
|
+
WaterEquivalentSnow = "WaterEquivalentSnow"
|
|
108
|
+
}
|
|
109
|
+
export declare type Remark = IUnknownRemark | IDefaultCommandRemark | ICeilingHeightRemark | ICeilingSecondLocationRemark | IHailSizeRemark | IHourlyMaximumMinimumTemperatureRemark | IHourlyMaximumTemperatureRemark | IHourlyMinimumTemperatureRemark | IHourlyPrecipitationAmountRemark | IHourlyPressureRemark | IHourlyTemperatureDewPointRemark | IIceAccretionRemark | IObscurationRemark | IPrecipitationAmount24HourRemark | IPrecipitationAmount36HourRemark | IPrecipitationAmount36HourRemark | IPrecipitationBegRemark | IPrecipitationBegEndRemark | IPrecipitationEndRemark | IPrevailingVisibilityRemark | ISeaLevelPressureRemark | ISecondLocationVisibilityRemark | ISectorVisibilityRemark | ISmallHailSizeRemark | ISnowDepthRemark | ISnowIncreaseRemark | ISnowPelletsRemark | ISunshineDurationRemark | ISurfaceVisibilityRemark | IThunderStormLocationRemark | IThunderStormLocationMovingRemark | ITornadicActivityBegRemark | ITornadicActivityBegEndRemark | ITornadicActivityEndRemark | ITowerVisibilityRemark | IVariableSkyRemark | IVariableSkyHeightRemark | IVirgaDirectionRemark | IWaterEquivalentSnowRemark | IWindPeakCommandRemark | IWindShiftRemark | IWindShiftFropaRemark;
|