Skip to content

Commit 3650f23

Browse files
Markus WaldmannMarkus Waldmann
authored andcommitted
Added Description for CloudStateLevel
changed ENUM names of CloudStateLevel to CLOUD_STATE_LEVEL_UNKNOWN, CLOUD_STATE_LEVEL_..., etc. Signed-off-by: Markus Waldmann <Markus.Waldmann@stud.hs-kempten.de>
1 parent 046f9c0 commit 3650f23

File tree

1 file changed

+15
-13
lines changed

1 file changed

+15
-13
lines changed

osi_environment.proto

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -344,9 +344,11 @@ message EnvironmentalConditions
344344
//
345345
message Clouds
346346
{
347+
// Definition of the cloud state level, i.e. cloud state and sky visualization settings.
348+
//
347349
optional CloudStateLevel cloud_state_level = 1;
348350

349-
// Definition of the cloud state, i.e. cloud state and sky visualization settings.
351+
// Defines the cloud state levels given by observation of total cloud amount in oktas.
350352
//
351353
// The total degree of coverage indicates how large the part of the sky vault is which is covered
352354
// with clouds altogether. It is given in eighths, because this division is easier to estimate
@@ -373,51 +375,51 @@ message EnvironmentalConditions
373375
{
374376
// Cloud State is unknown (must not be used in ground truth).
375377
//
376-
CLOUD_STATE_UNKNOWN = 0;
378+
CLOUD_STATE_LEVEL_UNKNOWN = 0;
377379

378380
// Other (unspecified but known) CloudState.
379381
//
380-
CLOUD_STATE_OTHER = 1;
382+
CLOUD_STATE_LEVEL_OTHER = 1;
381383

382384
// Cloudless (0/8)
383385
//
384-
CLOUD_STATE_CLOUDLESS = 2;
386+
CLOUD_STATE_LEVEL_CLOUDLESS = 2;
385387

386388
// Sunny (1/8)
387389
//
388-
CLOUD_STATE_SUNNY = 3;
390+
CLOUD_STATE_LEVEL_SUNNY = 3;
389391

390392
// Serene (2/8))
391393
//
392-
CLOUD_STATE_SERENE = 4;
394+
CLOUD_STATE_LEVEL_SERENE = 4;
393395

394396
// Slightly Cloudy (3/8)
395397
//
396-
CLOUD_STATE_SLIGHTLY_CLOUDY = 5;
398+
CLOUD_STATE_LEVEL_SLIGHTLY_CLOUDY = 5;
397399

398400
// Light Cloudy (4/8)
399401
//
400-
CLOUD_STATE_LIGHT_CLOUDY = 6;
402+
CLOUD_STATE_LEVEL_LIGHT_CLOUDY = 6;
401403

402404
// Cloudy (5/8)
403405
//
404-
CLOUD_STATE_CLOUDY = 7;
406+
CLOUD_STATE_LEVEL_CLOUDY = 7;
405407

406408
// Heavy Cloudy (6/8)
407409
//
408-
CLOUD_STATE_HEAVY_CLOUDY = 8;
410+
CLOUD_STATE_LEVEL_HEAVY_CLOUDY = 8;
409411

410412
// Almost Covered (7/8)
411413
//
412-
CLOUD_STATE_ALMOST_COVERED = 9;
414+
CLOUD_STATE_LEVEL_ALMOST_COVERED = 9;
413415

414416
// Covered (8/8)
415417
//
416-
CLOUD_STATE_COVERED = 10;
418+
CLOUD_STATE_LEVEL_COVERED = 10;
417419

418420
// No Sky
419421
//
420-
CLOUD_STATE_NO_SKY = 11;
422+
CLOUD_STATE_LEVEL_NO_SKY = 11;
421423
}
422424
}
423425

0 commit comments

Comments
 (0)