Skip to content

Commit 48bde0d

Browse files
Markus WaldmannMarkus Waldmann
authored andcommitted
Moved enums into CloudState message
The enum has been changed to CloudStateLevel and moved into a more open meaning message of CloudState. This can easily be expanded in the future with more detailed information Signed-off-by: Markus Waldmann <Markus.Waldmann@stud.hs-kempten.de>
1 parent 8013a0c commit 48bde0d

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

osi_environment.proto

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ message EnvironmentalConditions
378378
// [2] https://de.wikipedia.org/wiki/Bewölkung
379379
// [3] https://www.dwd.de/DE/service/lexikon/Functions/glossar.html?lv2=100932&lv3=101016
380380
//
381-
enum CloudState
381+
enum CloudStateLevel
382382
{
383383
// Cloud State is unknown (must not be used in ground truth).
384384
//
@@ -448,4 +448,15 @@ message EnvironmentalConditions
448448
//
449449
optional double intensity = 3;
450450
}
451+
452+
453+
//
454+
// \brief Specification of the cloud states
455+
//
456+
// \note within this message there is the cloud state level
457+
//
458+
message CloudState
459+
{
460+
optional CloudStateLevel cloud_state_level = 1;
461+
}
451462
}

0 commit comments

Comments
 (0)