You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Atmospheric pressure in Pascal at z=0.0 in world frame
17
+
optionalTimeOfDaytime_of_day=2;
18
+
// Atmospheric pressure in Pascal at z=0.0 in world frame.
21
19
//
22
20
optionaldoubleatmospheric_pressure=3;
23
-
24
-
// Temperature in Kelvin at z=0.0 in world frame
21
+
// Temperature in Kelvin at z=0.0 in world frame.
25
22
//
26
23
optionaldoubletemperature=4;
27
-
28
-
// Precipitation
24
+
// Precipitation.
29
25
//
30
26
optionalPrecipitationprecipitation=5;
27
+
// Fog.
28
+
//
29
+
optionalFogfog=6;
31
30
32
-
// Definition of precipitation states. See https://en.wikipedia.org/wiki/Rain#Measurement
31
+
// Definition of precipitation states according to [1].
32
+
// (I = Intensity of precipitation in mm per hour)
33
33
//
34
+
// \par References:
35
+
// [1] PAULAT, Marcus, et al. A gridded dataset of hourly precipitation in Germany: Its construction, climatology and application.
36
+
// Meteorologische Zeitschrift, 2008, 17. Jg. Nr. 6, S. 719-732.
34
37
enumPrecipitation
35
38
{
36
-
// Light intensity rain, when the precipitation rate is < 2.5 mm per hour
39
+
// Intensity of precipitation is unknown (must not be used in ground truth).
40
+
//
41
+
PRECIPITATION_UNKNOWN=0;
42
+
// Other (unspecified but known) intensity of precipitation.
43
+
//
44
+
PRECIPITATION_OTHER=1;
45
+
// No precipitation, when I = [0,0.1[
37
46
//
38
-
PRECIPITATION_RAIN_LIGHT=0;
39
-
40
-
// Medium intensity rain, when the precipitation rate is between 2.5 mm and 10 mm per hour
47
+
PRECIPITATION_NONE=2;
48
+
// Very light intensity of precipitation, when I = [0.1,0.5[
41
49
//
42
-
PRECIPITATION_RAIN_MEDIUM=1;
43
-
44
-
// High intensity rain, when the precipitation rate is between 10 mm and 50 mm per hour
50
+
PRECIPITATION_VERY_LIGHT=3;
51
+
// Light intensity of precipitation, when I = [0.5,1.9[
45
52
//
46
-
PRECIPITATION_RAIN_HIGH=2;
47
-
48
-
// Violent intensity rain, when the precipitation rate is > 50 mm per hour
53
+
PRECIPITATION_LIGHT=4;
54
+
// Moderate intensity of precipitation, when I = [1.9,8.1[
49
55
//
50
-
PRECIPITATION_RAIN_VIOLENT=3;
51
-
}
56
+
PRECIPITATION_MODERATE=5;
57
+
// Heavy intensity of precipitation, when I = [8.1,34[
58
+
//
59
+
PRECIPITATION_HEAVY=6;
60
+
// Very heavy intensity of precipitation, when I = [34,149[
61
+
//
62
+
PRECIPITATION_VERY_HEAVY=7;
63
+
// Extreme intensity of precipitation, when I = [149,infinity[
64
+
//
65
+
PRECIPITATION_EXTREME=8;
66
+
}
67
+
68
+
// Definition of fog states according to [2] the bandwith of thick and dense fog was adjusted to fit the German StVo regarding rear fog lights [3].
69
+
// (V = Visibility in meters)
70
+
//
71
+
// Visability is defined as the lenght of the atmosphere over which a beam of light travels before its luminous flux is reduced to 5% of its original value (definition used by the Meteorological Office [4]).
72
+
// This is approximately equivalent to visibility measured by the contrast of a distant object against its background.
73
+
//
74
+
// \par References:
75
+
// [2] SHEPARD, Frank D. Reduced visibility due to fog on the highway. Transportation Research Board, 1996.
0 commit comments