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
/// Definition of precipitation states. See https://en.wikipedia.org/wiki/Rain#Measurement
27
+
/// Definition of precipitation states.
28
+
/// See GLICKMAN, Todd S.; ZENK, Walter. Glossary of meteorology. American Meteorological Society, 2000. and JEBSON, S. Fact sheet number 3: Water in the Atmosphere. 2007.
28
29
enumPrecipitation
29
30
{
30
31
/// Rain intensity is unknown (must not be used in ground truth).
31
32
PRECIPITATION_RAIN_UNKNOWN=0;
32
33
/// Other (unspecified but known) rain intensity
33
34
PRECIPITATION_RAIN_OTHER=1;
34
-
/// Light intensity rain, when the precipitation rate is < 2.5 mm per hour
35
-
PRECIPITATION_RAIN_LIGHT=2;
36
-
/// Medium intensity rain, when the precipitation rate is between 2.5 mm and 10 mm per hour
37
-
PRECIPITATION_RAIN_MEDIUM=3;
38
-
/// High intensity rain, when the precipitation rate is between 10 mm and 50 mm per hour
39
-
PRECIPITATION_RAIN_HIGH=4;
35
+
/// No rain, when the precipitation rate is < 0.25 mm per hour
36
+
PRECIPITATION_RAIN_NONE=2;
37
+
/// Light intensity rain, when the precipitation rate is between 0.25 mm and 2.5 mm per hour
38
+
PRECIPITATION_RAIN_LIGHT=3;
39
+
/// Medium intensity rain, when the precipitation rate is between 2.5 mm and 7.6 mm per hour
40
+
PRECIPITATION_RAIN_MEDIUM=4;
41
+
/// High intensity rain, when the precipitation rate is between 7.6 mm and 50 mm per hour
42
+
PRECIPITATION_RAIN_HIGH=5;
40
43
/// Violent intensity rain, when the precipitation rate is > 50 mm per hour
0 commit comments