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
21
+
// Atmospheric pressure in Pascal at z=0.0 in world frame.
22
+
//
19
23
optionaldoubleatmospheric_pressure=3;
20
24
21
-
/// Temperature in Kelvin at z=0.0 in world frame
25
+
// Temperature in Kelvin at z=0.0 in world frame.
26
+
//
22
27
optionaldoubletemperature=4;
23
28
24
-
/// Precipitation
29
+
// Precipitation
30
+
//
25
31
optionalPrecipitationprecipitation=5;
26
32
27
-
/// Fog
33
+
// Fog
34
+
//
28
35
optionalFogfog=6;
29
36
30
-
/// Definition of precipitation states
31
-
/// I = Intensity of precipitation in mm per hour
32
-
/// Quote: PAULAT, Marcus, et al. A gridded dataset of hourly precipitation in Germany: Its construction, climatology and application. Meteorologische Zeitschrift, 2008, 17. Jg., Nr. 6, S. 719-732.
37
+
// Definition of precipitation states according to [1].
38
+
// (I = Intensity of precipitation in mm per hour)
39
+
//
40
+
// \par References:
41
+
// [1] PAULAT, Marcus, et al. A gridded dataset of hourly precipitation in Germany: Its construction, climatology and application.
42
+
// Meteorologische Zeitschrift, 2008, 17. Jg. Nr. 6, S. 719-732.
33
43
enumPrecipitation
34
44
{
35
-
/// Intensity of precipitation is unknown (must not be used in ground truth).
45
+
// Intensity of precipitation is unknown (must not be used in ground truth).
36
46
PRECIPITATION_UNKNOWN=0;
37
-
/// Other (unspecified but known) intensity of precipitation
47
+
// Other (unspecified but known) intensity of precipitation
38
48
PRECIPITATION_OTHER=1;
39
-
/// No precipitation, when I = [0 ; 0.1[
49
+
// No precipitation, when I = [0 ; 0.1[
40
50
PRECIPITATION_NONE=2;
41
-
/// Very light intensity of precipitation, when I = [0.1 ;0.5[
51
+
// Very light intensity of precipitation, when I = [0.1 ;0.5[
42
52
PRECIPITATION_VERY_LIGHT=3;
43
-
/// Light intensity of precipitation, when I = [0.5 ;1.9[
53
+
// Light intensity of precipitation, when I = [0.5 ;1.9[
44
54
PRECIPITATION_LIGHT=4;
45
-
/// Moderate intensity of precipitation, when I = [1.9 ; 8.1[
55
+
// Moderate intensity of precipitation, when I = [1.9 ; 8.1[
46
56
PRECIPITATION_MODERATE=5;
47
-
/// Heavy intensity of precipitation, when I = [8.1 ; 34[
57
+
// Heavy intensity of precipitation, when I = [8.1 ; 34[
48
58
PRECIPITATION_HEAVY=6;
49
-
/// Very heavy intensity of precipitation, when I = [34 ;149[
59
+
// Very heavy intensity of precipitation, when I = [34 ;149[
50
60
PRECIPITATION_VERY_HEAVY=7;
51
-
/// Extreme intensity of precipitation, when I = [149 ; infinity[
61
+
// Extreme intensity of precipitation, when I = [149 ; infinity[
52
62
PRECIPITATION_EXTREME=8;
53
63
}
54
64
55
-
/// Definition of fog states by visibility
56
-
/// V = Visibility in meters is the greatest distance at which a black object of suitable dimensions may be seen and recognized against the horizon, sky, or in the case of night observation, could be seen and recognized if the general illumination were raised to the normal daylight level. (Meteorological Office 1969)
57
-
/// Quote: SHEPARD, Frank D. Reduced visibility due to fog on the highway. Transportation Research Board, 1996.
65
+
// 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].
66
+
// (V = Visibility in meters)
67
+
//
68
+
// 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]).
69
+
// This is approximately equivalent to visibility measured by the contrast of a distant object against its background.
70
+
//
71
+
// \par References:
72
+
// [2] SHEPARD, Frank D. Reduced visibility due to fog on the highway. Transportation Research Board, 1996.
0 commit comments