hydrobricks
Loading...
Searching...
No Matches
Enums.h
1#ifndef HYDROBRICKS_ENUMS_H
2#define HYDROBRICKS_ENUMS_H
3
7enum {
8 FAILED = -1,
9 OUT_OF_RANGE = -2,
10 NOT_FOUND = -3,
11 EMPTY = -4,
12 NONE = -5,
13 NOT_VALID = -6,
14 UNDEFINED = -7
15};
16
20enum class TimeUnit {
21 Week,
22 Day,
23 Hour,
24 Minute,
25 Variable
26};
27
31enum class VariableType {
32 Precipitation,
33 Temperature,
34 TemperatureMin,
35 TemperatureMax,
36 Radiation,
37 PET,
38 Custom1,
39 Custom2,
40 Custom3
41};
42
46enum TimeFormat {
47 ISOdate,
48 ISOdateTime,
49 YYYY_MM_DD,
50 YYYY_MM_DD_hh_mm,
51 YYYY_MM_DD_hh_mm_ss,
52 DD_MM_YYYY,
53 DD_MM_YYYY_hh_mm,
54 DD_MM_YYYY_hh_mm_ss,
55 guess
56};
57
61enum class BrickType {
62 Storage,
64 Glacier,
65 Urban,
68 Unknown
69};
70
74enum class ContentType {
75 Water,
76 Snow,
77 Ice,
78 Unknown
79};
80
81#endif // HYDROBRICKS_ENUMS_H
Definition GenericLandCover.h:7
Definition Glacier.h:11
Definition Snowpack.h:10
Definition Storage.h:7
Definition Urban.h:7
Definition Vegetation.h:7