-
Notifications
You must be signed in to change notification settings - Fork 16
/
Variable.cs
145 lines (141 loc) · 3.49 KB
/
Variable.cs
1
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
// <auto-generated>
// automatically generated by the FlatBuffers compiler, do not modify
// </auto-generated>
namespace openmeteo_sdk
{
public enum Variable : byte
{
undefined = 0,
apparent_temperature = 1,
cape = 2,
cloud_cover = 3,
cloud_cover_high = 4,
cloud_cover_low = 5,
cloud_cover_mid = 6,
daylight_duration = 7,
dew_point = 8,
diffuse_radiation = 9,
diffuse_radiation_instant = 10,
direct_normal_irradiance = 11,
direct_normal_irradiance_instant = 12,
direct_radiation = 13,
direct_radiation_instant = 14,
et0_fao_evapotranspiration = 15,
evapotranspiration = 16,
freezing_level_height = 17,
growing_degree_days = 18,
is_day = 19,
latent_heat_flux = 20,
leaf_wetness_probability = 21,
lifted_index = 22,
lightning_potential = 23,
precipitation = 24,
precipitation_hours = 25,
precipitation_probability = 26,
pressure_msl = 27,
rain = 28,
relative_humidity = 29,
runoff = 30,
sensible_heat_flux = 31,
shortwave_radiation = 32,
shortwave_radiation_instant = 33,
showers = 34,
snow_depth = 35,
snow_height = 36,
snowfall = 37,
snowfall_height = 38,
snowfall_water_equivalent = 39,
sunrise = 40,
sunset = 41,
soil_moisture = 42,
soil_moisture_index = 43,
soil_temperature = 44,
surface_pressure = 45,
surface_temperature = 46,
temperature = 47,
terrestrial_radiation = 48,
terrestrial_radiation_instant = 49,
total_column_integrated_water_vapour = 50,
updraft = 51,
uv_index = 52,
uv_index_clear_sky = 53,
vapour_pressure_deficit = 54,
visibility = 55,
weather_code = 56,
wind_direction = 57,
wind_gusts = 58,
wind_speed = 59,
vertical_velocity = 60,
geopotential_height = 61,
wet_bulb_temperature = 62,
river_discharge = 63,
wave_height = 64,
wave_period = 65,
wave_direction = 66,
wind_wave_height = 67,
wind_wave_period = 68,
wind_wave_peak_period = 69,
wind_wave_direction = 70,
swell_wave_height = 71,
swell_wave_period = 72,
swell_wave_peak_period = 73,
swell_wave_direction = 74,
pm10 = 75,
pm2p5 = 76,
dust = 77,
aerosol_optical_depth = 78,
carbon_monoxide = 79,
nitrogen_dioxide = 80,
ammonia = 81,
ozone = 82,
sulphur_dioxide = 83,
alder_pollen = 84,
birch_pollen = 85,
grass_pollen = 86,
mugwort_pollen = 87,
olive_pollen = 88,
ragweed_pollen = 89,
european_aqi = 90,
european_aqi_pm2p5 = 91,
european_aqi_pm10 = 92,
european_aqi_nitrogen_dioxide = 93,
european_aqi_ozone = 94,
european_aqi_sulphur_dioxide = 95,
us_aqi = 96,
us_aqi_pm2p5 = 97,
us_aqi_pm10 = 98,
us_aqi_nitrogen_dioxide = 99,
us_aqi_ozone = 100,
us_aqi_sulphur_dioxide = 101,
us_aqi_carbon_monoxide = 102,
sunshine_duration = 103,
convective_inhibition = 104,
shortwave_radiation_clear_sky = 105,
global_tilted_irradiance = 106,
global_tilted_irradiance_instant = 107,
ocean_current_velocity = 108,
ocean_current_direction = 109,
cloud_base = 110,
cloud_top = 111,
mass_density = 112,
boundary_layer_height = 113,
formaldehyde = 114,
glyoxal = 115,
non_methane_volatile_organic_compounds = 116,
pm10_wildfires = 117,
peroxyacyl_nitrates = 118,
secondary_inorganic_aerosol = 119,
residential_elementary_carbon = 120,
total_elementary_carbon = 121,
pm2_5_total_organic_matter = 122,
sea_salt_aerosol = 123,
nitrogen_monoxide = 124,
thunderstorm_probability = 125,
rain_probability = 126,
freezing_rain_probability = 127,
ice_pellets_probability = 128,
snowfall_probability = 129,
carbon_dioxide = 130,
methane = 131,
};
}