Values.AzElSegmentSourceA time segment containing azimuth elevation pointing data. Each segment defines a continuous time period with pointing angle data points. AWS Ground Station uses 4th order Lagrange interpolation between the provided points, so each segment must contain at least five data points.
type nonrec t = {referenceEpoch : SyntheticTimestamp_date_time.t;The reference time for this segment in ISO 8601 format in Coordinated Universal Time (UTC). All time values within the segment's AzElSegment$azElList are specified as offsets in atomic seconds from this reference epoch. Example: 2024-01-15T12:00:00.000Z
*)validTimeRange : ISO8601TimeRange.t;The valid time range for this segment. Specifies the start and end timestamps in ISO 8601 format in Coordinated Universal Time (UTC). The segment's pointing data must cover this entire time range.
*)azElList : TimeAzElList.t;List of time-tagged azimuth elevation data points. Must contain at least five points to support 4th order Lagrange interpolation. Points must be in chronological order with no duplicates.
*)}val make :
referenceEpoch:SyntheticTimestamp_date_time.t ->
validTimeRange:ISO8601TimeRange.t ->
azElList:TimeAzElList.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of
[> `Structure of (string * [> `Double of Double.t ]) list ] list
| `Structure of
(string * [> `Timestamp of SyntheticTimestamp_date_time.t ]) list
| `Timestamp of SyntheticTimestamp_date_time.t ])
list ]