@@ -516,77 +516,4 @@ message WavelengthData
516516 // \note This defines the number of wavelengths to be computed during simulation, not to be confused with samples_per_pixel.
517517 //
518518 optional double samples_number = 3 ;
519- }
520-
521- //
522- // \brief Distribution of data points and data values
523- //
524- // Defines the breakpoints of the corresponding distribution and the corresponding distribution values.
525- //
526- message DistributionData
527- {
528- // Defines the type of the breakpoints for the distribution function.
529- //
530- optional Breakpoints breakpoints = 1 ;
531-
532- // Defines the value of breakpoints of the distribution function for continuous or not equally distributed cases.
533- //
534- repeated double points = 2 ;
535-
536- // Defines the start value, end value and the sample number if distribution has equally discretized breakpoints.
537- // 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.
539- //
540- repeated double WaveLengthData = 3 ;
541-
542- // Defines the type of the data distribution.
543- //
544- optional Distribution distribution = 4 ;
545-
546- // Defines the normalized value of the distribution.
547- // In case of DISTRIBUTION_EQUAL the value of all points is equal to the double data.
548- // In case of DISTRIBUTION_GAUSSIAN there has to be two values in the following order:
549- // expected value, variance
550- // If the type is DISTRIBUTION_CUSTOM data corresponds to a Lookup-Table with points
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.
554- //
555- // Unit: %
556- //
557- repeated double data = 5 ;
558-
559- // Definition of distribution types. The values of the data distribution is defined in the field data.
560- //
561- enum Breakpoints
562- {
563- // The breakpoints of the distribution is user-defined (e.g. breakpoints Lookup-Table).
564- //
565- BREAKPOINTS_CUSTOM = 0 ;
566-
567- // The breakpoints of the distribution are in azimuth and elevation (spherical shape).
568- //
569- BREAKPOINTS_SPHERICAL = 1 ;
570-
571- // The breakpoints of the distribution are in x- and y-coordinates (rectangular shape).
572- //
573- BREAKPOINTS_RECTANGULAR = 2 ;
574- }
575-
576- // Definition of distribution types. The values of the data distribution is defined in the field data.
577- //
578- enum Distribution
579- {
580- // The distribution corresponds to a user-defined distribution (e.g. Lookup-Table).
581- //
582- DISTRIBUTION_CUSTOM = 0 ;
583-
584- // The distribution corresponds to an equal distribution.
585- //
586- DISTRIBUTION_EQUAL = 1 ;
587-
588- // The distribution corresponds to a Gaussian distribution.
589- //
590- DISTRIBUTION_GAUSSIAN = 2 ;
591- }
592519}
0 commit comments