Spaces:
Sleeping
Sleeping
File size: 18,423 Bytes
6ee917b | 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 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 | import Foundation
enum IconPressureVariableType: String, CaseIterable {
case temperature
case wind_u_component
case wind_v_component
case geopotential_height
case relative_humidity
}
struct IconPressureVariable: PressureVariableRespresentable, Hashable, GenericVariableMixable {
let variable: IconPressureVariableType
let level: Int
var storePreviousForecast: Bool {
return false
}
var requiresOffsetCorrectionForMixing: Bool {
return false
}
var omFileName: (file: String, level: Int) {
(rawValue, 0)
}
var scalefactor: Float {
// Upper level data are more dynamic and that is bad for compression. Use lower scalefactors
switch variable {
case .temperature:
// Use scalefactor of 2 for everything higher than 300 hPa
return (2..<10).interpolated(atFraction: (300..<1000).fraction(of: Float(level)))
case .wind_u_component:
fallthrough
case .wind_v_component:
// Use scalefactor 3 for levels higher than 500 hPa.
return (3..<10).interpolated(atFraction: (500..<1000).fraction(of: Float(level)))
case .geopotential_height:
return (0.05..<1).interpolated(atFraction: (0..<500).fraction(of: Float(level)))
//case .cloudcover:
// return (0.2..<1).interpolated(atFraction: (0..<800).fraction(of: Float(v.level)))
case .relative_humidity:
return (0.2..<1).interpolated(atFraction: (0..<800).fraction(of: Float(level)))
}
}
var interpolation: ReaderInterpolation {
switch variable {
case .temperature:
return .hermite(bounds: nil)
case .wind_u_component:
return .hermite(bounds: nil)
case .wind_v_component:
return .hermite(bounds: nil)
case .geopotential_height:
return .hermite(bounds: nil)
case .relative_humidity:
return .hermite(bounds: 0...100)
}
}
var unit: SiUnit {
switch variable {
case .temperature:
return .celsius
case .wind_u_component:
return .metrePerSecond
case .wind_v_component:
return .metrePerSecond
case .geopotential_height:
return .metre
//case .cloudcover:
// return .percentage
case .relative_humidity:
return .percentage
}
}
var isElevationCorrectable: Bool {
return false
}
}
/**
Combined surface and pressure level variables with all definitions for the API
*/
typealias IconVariable = SurfaceAndPressureVariable<IconSurfaceVariable, IconPressureVariable>
/**
Available variables to download from the DWD open data server
*/
enum IconSurfaceVariable: String, CaseIterable, GenericVariableMixable {
case temperature_2m
case cloud_cover // cloudcover total
case cloud_cover_low
case cloud_cover_mid
case cloud_cover_high
case convective_cloud_top
case convective_cloud_base
/// pressure reduced to sea level
case pressure_msl
/// Total precipitation accumulated sinve model start. First hour is always 0.
case precipitation
/// weather interpretation (WMO) https://www.dwd.de/DWD/forschung/nwv/fepub/icon_database_main.pdf page 47
/// Significant weather of the last hour. The predicted weather will be diagnosed hourly at each model grid point and coded as a key number. The latter is called ww-code and represents weather phenomena within the last hour. The interpretation of such weather phenomena from raw model output relies on an independent post-processing method. This technique applies a number of thresholding processes based on WMO criteria. Therefore, a couple of ww-codes may differ from the direct model output (e.g. ww-category snow vs. SNOW_GSP/SNOW_CON). Due to limitations in temporal and spatial resolution, not all ww-codes as defined by the WMO criteria can be determined. However, the simulated ww-code is able to take the following values: no significant weather/ cloud cover (0, 1, 2, 3), fog (45, 48), drizzle (51, 53, 55, 56, 57), rain (61, 63, 65, 66, 67), solid precip not in showers (71, 73, 75, 77), showery precip (liquid & solid) (80, 81, 82, 85, 86), thunderstorm (95, 96, 99 (only ICON- D2)) (see also Table 7.1).
case weather_code
case wind_v_component_10m
case wind_u_component_10m
case wind_v_component_80m
case wind_u_component_80m
case wind_v_component_120m
case wind_u_component_120m
case wind_v_component_180m
case wind_u_component_180m
case temperature_80m
case temperature_120m
case temperature_180m
/// Soil temperature
case soil_temperature_0cm
case soil_temperature_6cm
case soil_temperature_18cm
case soil_temperature_54cm
/// Soil moisture
/// The model soil moisture data was converted from kg/m2 to m3/m3 by using the formula SM[m3/m3] = SM[kg/m2] * 0.001 * 1/d, where d is the thickness of the soil layer in meters. The factor 0.001 is due to the assumption that 1kg of water represents 1000cm3, which is 0.001m3.
case soil_moisture_0_to_1cm
case soil_moisture_1_to_3cm
case soil_moisture_3_to_9cm
case soil_moisture_9_to_27cm
case soil_moisture_27_to_81cm
/// snow depth in meters
case snow_depth
/// Ceiling is that height above MSL (in m), where the large scale cloud coverage (more precise: scale and sub-scale, but without the convective contribution) first exceeds 50% when starting from ground.
//case ceiling // not in global
/// Sensible heat net flux at surface (average since model start)
case sensible_heat_flux
/// Latent heat net flux at surface (average since model start)
case latent_heat_flux
/// Convective rain in mm
case showers
/// Large scale rain in mm
case rain
/// convective snowfall. Note: Only downloaded and then added to `snowfall_water_equivalent`
case snowfall_convective_water_equivalent
/// largescale snowfall
case snowfall_water_equivalent
/// Convective available potential energy
case cape
//case tke
/// LPI Lightning Potential Index . Only available in icon-d2. Scales form 0 to ~120
case lightning_potential
/// vmax has no timstep 0
/// Maximum wind gust at 10m above ground. It is diagnosed from the turbulence state in the atmospheric boundary layer, including a potential enhancement by the SSO parameterization over mountainous terrain.
/// In the presence of deep convection, it contains an additional contribution due to convective gusts.
/// Maxima are collected over hourly intervals on all domains. (Prior to 2015-07-07 maxima were collected over 3-hourly intervals on the global grid.)
case wind_gusts_10m
/// Height of snow fall limit above MSL. It is defined as the height where the wet bulb temperature Tw first exceeds 1.3◦C (scanning mode from top to bottom).
/// If this threshold is never reached within the entire atmospheric column, SNOWLMT is undefined (GRIB2 bitmap). Only icon-eu + d2
case snowfall_height
/// Height of the 0◦ C isotherm above MSL. In case of multiple 0◦ C isotherms, HZEROCL contains the uppermost one.
/// If the temperature is below 0◦ C throughout the entire atmospheric column, HZEROCL is set equal to the topography height (fill value).
case freezing_level_height
/// Relative humidity on 2 meters
case relative_humidity_2m
/// Downward solar diffuse radiation flux at the surface, averaged over forecast time.
case diffuse_radiation
/// Downward solar direct radiation flux at the surface, averaged over forecast time. This quantity is not directly provided by the radiation scheme.
/// Diffuse + direct it still valid as the total shortwave radiation
case direct_radiation
/// Maximum updraft within 10 km altitude `W_CTMAX`
case updraft
case visibility
var storePreviousForecast: Bool {
switch self {
case .temperature_2m, .relative_humidity_2m: return true
case .showers, .precipitation, .snowfall_water_equivalent: return true
case .pressure_msl: return true
case .cloud_cover: return true
case .diffuse_radiation, .direct_radiation: return true
case .wind_gusts_10m, .wind_u_component_10m, .wind_v_component_10m: return true
case .wind_u_component_80m, .wind_v_component_80m: return true
case .wind_u_component_120m, .wind_v_component_120m: return true
case .wind_u_component_180m, .wind_v_component_180m: return true
case .weather_code: return true
default: return false
}
}
var scalefactor: Float {
switch self {
case .temperature_2m: return 20
case .cloud_cover: return 1
case .cloud_cover_low: return 1
case .cloud_cover_mid: return 1
case .cloud_cover_high: return 1
case .convective_cloud_top: return 0.1
case .convective_cloud_base: return 0.1
case .precipitation: return 10
case .weather_code: return 1
case .wind_v_component_10m: return 10
case .wind_u_component_10m: return 10
case .wind_v_component_80m: return 10
case .wind_u_component_80m: return 10
case .wind_v_component_120m: return 10
case .wind_u_component_120m: return 10
case .wind_v_component_180m: return 10
case .wind_u_component_180m: return 10
case .soil_temperature_0cm: return 20
case .soil_temperature_6cm: return 20
case .soil_temperature_18cm: return 20
case .soil_temperature_54cm: return 20
case .soil_moisture_0_to_1cm: return 1000
case .soil_moisture_1_to_3cm: return 1000
case .soil_moisture_3_to_9cm: return 1000
case .soil_moisture_9_to_27cm: return 1000
case .soil_moisture_27_to_81cm: return 1000
case .snow_depth: return 100 // 1cm res
case .sensible_heat_flux: return 0.144
case .latent_heat_flux: return 0.144 // round watts to 7.. results in 0.01 resolution in evpotrans
case .wind_gusts_10m: return 10
case .freezing_level_height: return 0.1 // zero height 10 meter resolution
case .relative_humidity_2m: return 1
case .diffuse_radiation: return 1
case .direct_radiation: return 1
case .showers: return 10
case .rain: return 10
case .pressure_msl: return 10
case .snowfall_convective_water_equivalent: return 10
case .snowfall_water_equivalent: return 10
case .temperature_80m:
fallthrough
case .temperature_120m:
fallthrough
case .temperature_180m:
return 10
case .cape:
return 0.1
case .lightning_potential:
return 10
case .snowfall_height:
return 0.1
case .updraft:
return 100
case .visibility: return 0.05 // 50 meter
}
}
/// unit stored on disk... or directly read by low level reads
var unit: SiUnit {
switch self {
case .temperature_2m: return .celsius
case .cloud_cover: return .percentage
case .cloud_cover_low: return .percentage
case .cloud_cover_mid: return .percentage
case .cloud_cover_high: return .percentage
case .convective_cloud_top: return .metre
case .convective_cloud_base: return .metre
case .precipitation: return .millimetre
case .weather_code: return .wmoCode
case .wind_v_component_10m: return .metrePerSecond
case .wind_u_component_10m: return .metrePerSecond
case .wind_v_component_80m: return .metrePerSecond
case .wind_u_component_80m: return .metrePerSecond
case .wind_v_component_120m: return .metrePerSecond
case .wind_u_component_120m: return .metrePerSecond
case .wind_v_component_180m: return .metrePerSecond
case .wind_u_component_180m: return .metrePerSecond
case .soil_temperature_0cm: return .celsius
case .soil_temperature_6cm: return .celsius
case .soil_temperature_18cm: return .celsius
case .soil_temperature_54cm: return .celsius
case .soil_moisture_0_to_1cm: return .cubicMetrePerCubicMetre
case .soil_moisture_1_to_3cm: return .cubicMetrePerCubicMetre
case .soil_moisture_3_to_9cm: return .cubicMetrePerCubicMetre
case .soil_moisture_9_to_27cm: return .cubicMetrePerCubicMetre
case .soil_moisture_27_to_81cm: return .cubicMetrePerCubicMetre
case .snow_depth: return .metre
case .sensible_heat_flux: return .wattPerSquareMetre
case .latent_heat_flux: return .wattPerSquareMetre
case .showers: return .millimetre
case .rain: return .millimetre
case .wind_gusts_10m: return .metrePerSecond
case .freezing_level_height: return .metre
case .relative_humidity_2m: return .percentage
case .diffuse_radiation: return .wattPerSquareMetre
case .snowfall_convective_water_equivalent: return .millimetre
case .snowfall_water_equivalent: return .millimetre
case .direct_radiation: return .wattPerSquareMetre
case .pressure_msl: return .hectopascal
case .temperature_80m:
return .celsius
case .temperature_120m:
return .celsius
case .temperature_180m:
return .celsius
case .cape:
return .joulePerKilogram
case .lightning_potential:
return .joulePerKilogram
case .snowfall_height:
return .metre
case .updraft:
return .metrePerSecondNotUnitConverted
case .visibility:
return .metre
}
}
/// Soil moisture or snow depth are cumulative processes and have offsets if multiple models are mixed
var requiresOffsetCorrectionForMixing: Bool {
switch self {
case .soil_moisture_0_to_1cm: return true
case .soil_moisture_1_to_3cm: return true
case .soil_moisture_3_to_9cm: return true
case .soil_moisture_9_to_27cm: return true
case .soil_moisture_27_to_81cm: return true
case .snow_depth: return true
default: return false
}
}
/// Name in dwd filenames
var omFileName: (file: String, level: Int) {
return (rawValue, 0)
}
var interpolation: ReaderInterpolation {
switch self {
case .temperature_2m:
return .hermite(bounds: nil)
case .cloud_cover:
return .linear
case .cloud_cover_low:
return .linear
case .cloud_cover_mid:
return .linear
case .cloud_cover_high:
return .linear
case .convective_cloud_top:
return .hermite(bounds: 0...10e9)
case .convective_cloud_base:
return .hermite(bounds: 0...10e9)
case .pressure_msl:
return .hermite(bounds: nil)
case .precipitation:
return .backwards_sum
case .weather_code:
return .backwards
case .wind_v_component_10m:
return .hermite(bounds: nil)
case .wind_u_component_10m:
return .hermite(bounds: nil)
case .wind_v_component_80m:
return .hermite(bounds: nil)
case .wind_u_component_80m:
return .hermite(bounds: nil)
case .wind_v_component_120m:
return .hermite(bounds: nil)
case .wind_u_component_120m:
return .hermite(bounds: nil)
case .wind_v_component_180m:
return .hermite(bounds: nil)
case .wind_u_component_180m:
return .hermite(bounds: nil)
case .temperature_80m:
return .hermite(bounds: nil)
case .temperature_120m:
return .hermite(bounds: nil)
case .temperature_180m:
return .hermite(bounds: nil)
case .soil_temperature_0cm:
return .hermite(bounds: nil)
case .soil_temperature_6cm:
return .hermite(bounds: nil)
case .soil_temperature_18cm:
return .hermite(bounds: nil)
case .soil_temperature_54cm:
return .hermite(bounds: nil)
case .soil_moisture_0_to_1cm:
return .hermite(bounds: nil)
case .soil_moisture_1_to_3cm:
return .hermite(bounds: nil)
case .soil_moisture_3_to_9cm:
return .hermite(bounds: nil)
case .soil_moisture_9_to_27cm:
return .hermite(bounds: nil)
case .soil_moisture_27_to_81cm:
return .hermite(bounds: nil)
case .snow_depth:
return .linear
case .sensible_heat_flux:
return .hermite(bounds: nil)
case .latent_heat_flux:
return .hermite(bounds: nil)
case .showers:
return .backwards_sum
case .rain:
return .backwards_sum
case .snowfall_convective_water_equivalent:
return .backwards_sum
case .snowfall_water_equivalent:
return .backwards_sum
case .cape:
return .hermite(bounds: 0...10e9)
case .lightning_potential:
return .linear
case .wind_gusts_10m:
return .linear
case .snowfall_height:
return .linear
case .freezing_level_height:
return .linear
case .relative_humidity_2m:
return .hermite(bounds: 0...100)
case .diffuse_radiation:
return .solar_backwards_averaged
case .direct_radiation:
return .solar_backwards_averaged
case .updraft:
return .hermite(bounds: nil)
case .visibility:
return .linear
}
}
var isElevationCorrectable: Bool {
return self == .temperature_2m || self == .temperature_80m ||
self == .temperature_120m || self == .temperature_180m ||
self == .soil_temperature_0cm || self == .soil_temperature_6cm ||
self == .soil_temperature_18cm || self == .soil_temperature_54cm
}
}
|