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
/// 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.
32
33
enumPrecipitation
33
34
{
34
35
/// Intensity of precipitation is unknown (must not be used in ground truth).
35
36
PRECIPITATION_UNKNOWN=0;
36
37
/// Other (unspecified but known) intensity of precipitation
37
38
PRECIPITATION_OTHER=1;
38
-
/// No precipitation, when the precipitation rate is between 0 and 0.1 mm per hour
39
+
/// No precipitation, when I = [0 ; 0.1[
39
40
PRECIPITATION_NONE=2;
40
-
/// Very light intensity of precipitation, when the precipitation rate is between 0.1 and 0.5 mm per hour
41
+
/// Very light intensity of precipitation, when I = [0.1 ;0.5[
41
42
PRECIPITATION_VERY_LIGHT=3;
42
-
/// Light intensity of precipitation, when the precipitation rate is between 0.5 and 1.9 mm per hour
43
+
/// Light intensity of precipitation, when I = [0.5 ;1.9[
43
44
PRECIPITATION_LIGHT=4;
44
-
/// Moderate intensity of precipitation, when the precipitation rate is between 1.9 and 8.1 mm per hour
45
+
/// Moderate intensity of precipitation, when I = [1.9 ; 8.1[
45
46
PRECIPITATION_MODERATE=5;
46
-
/// Heavy intensity of precipitation, when the precipitation rate is between 8.1 and 34 mm per hour
47
+
/// Heavy intensity of precipitation, when I = [8.1 ; 34[
47
48
PRECIPITATION_HEAVY=6;
48
-
/// Very heavy intensity of precipitation, when the precipitation rate is between 34 and 149 mm per hour
49
+
/// Very heavy intensity of precipitation, when I = [34 ;149[
49
50
PRECIPITATION_VERY_HEAVY=7;
50
-
/// Extreme intensity of precipitation, when the precipitation rate is > 149 mm per hour
51
+
/// Extreme intensity of precipitation, when I = [149 ; infinity[
51
52
PRECIPITATION_EXTREME=8;
52
53
}
53
54
54
55
/// Definition of fog states by visibility
55
-
/// Quote: SHEPARD, Frank D. Reduced visibility due to fog on the highway. Transportation Research Board, 1996. (International classification of 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.
56
58
enumFog
57
59
{
58
60
/// Visibility is unknown (must not be used in ground truth)
59
61
FOG_UNKOWN=0;
60
62
/// Other (unspecified but known) fog intensity
61
63
FOG_OTHER=1;
62
-
/// Excellent visibility, when visibility > 40,000 m
64
+
/// Excellent visibility, when V = [40,000 ; infinity[
63
65
FOG_EXCELLENT_VISIBILITY=2;
64
-
/// Good visibility, when visibility is between 10,000 and 40,000 m
66
+
/// Good visibility, when V = [10,000 ; 40,000[
65
67
FOG_GOOD_VISIBILITY=3;
66
-
/// Moderate visibility, when visibility is between 4000 and 10,000 m
68
+
/// Moderate visibility, when V = [4000 ; 10,000[
67
69
FOG_MODERATE_VISIBILITY=4;
68
-
/// Poor visibility, when visibility is between 2000 and 4000 m
70
+
/// Poor visibility, when V = [2000 ; 4000[
69
71
FOG_POOR_VISIBILITY=5;
70
-
/// Mist, when visibility is between 1000 and 2000 m
72
+
/// Mist, when V = [1000 ; 2000[
71
73
FOG_MIST=6;
72
-
/// Fog, when visibility is between 200 and 1000 m
74
+
/// Fog, when V = [200 ; 1000[
73
75
FOG_LIGHT=7;
74
-
/// Thick fog, when visibility is between 40 and 200 m
0 commit comments