@@ -535,11 +535,11 @@ message DistributionData
535535
536536 // Defines the start value, end value and the sample number if distribution has equally discretized breakpoints.
537537 // In case of BREAKPOINTS_SPHERICAL the first one is azimuth and the second is elevation direction.
538- // In case of BREAKPOINTS_RECTANGULAR the first one is x and the second is y direction
538+ // In case of BREAKPOINTS_RECTANGULAR the first one is x- and the second is y- direction.
539539 //
540540 repeated double WaveLengthData = 3 ;
541541
542- // Defines the type of the distribution.
542+ // Defines the type of the data distribution.
543543 //
544544 optional Distribution distribution = 4 ;
545545
@@ -548,9 +548,9 @@ message DistributionData
548548 // In case of DISTRIBUTION_GAUSSIAN there has to be two values in the following order:
549549 // expected value, variance
550550 // If the type is DISTRIBUTION_CUSTOM data corresponds to a Lookup-Table with points
551- // defined in the same message:
552- // E.g. osi_object.proto: Spherical2d is defined before DistributionData and the number
553- // of elements in data is equal to the discretization in Spheical2d .
551+ // defined via the breakpoints.
552+ // The maximum value of the distribution is defined in the osi message, in which this
553+ // message is used .
554554 //
555555 // Unit: %
556556 //
@@ -560,15 +560,15 @@ message DistributionData
560560 //
561561 enum Breakpoints
562562 {
563- // The data points of the distribution is user-defined (e.g. breakpoints Lookup-Table).
563+ // The breakpoints of the distribution is user-defined (e.g. breakpoints Lookup-Table).
564564 //
565565 BREAKPOINTS_CUSTOM = 0 ;
566566
567- // The distribution corresponds to an equal distribution .
567+ // The breakpoints of the distribution are in azimuth and elevation (spherical shape) .
568568 //
569569 BREAKPOINTS_SPHERICAL = 1 ;
570570
571- // The distribution corresponds to a Gaussian distribution .
571+ // The breakpoints of the distribution are in x- and y-coordinates (rectangular shape) .
572572 //
573573 BREAKPOINTS_RECTANGULAR = 2 ;
574574 }
0 commit comments