Module Values.TimeAzElSource

Time-tagged azimuth elevation pointing data. Specifies the antenna pointing direction at a specific time offset from the segment's reference epoch.

Sourcetype nonrec t = {
  1. dt : Double.t;
    (*

    Time offset in atomic seconds from the segment's reference epoch. All dt values within a segment must be in ascending order with no duplicates. dt values may be: negative expressed as fractions of a second expressed in scientific notation

    *)
  2. az : Double.t;
    (*

    Azimuth angle at the specified time. Valid ranges by unit: DEGREE_ANGLE: -180 to 360 degrees, measured clockwise from true north RADIAN: -π to 2π radians, measured clockwise from true north

    *)
  3. el : Double.t;
    (*

    Elevation angle at the specified time. Valid ranges by unit: DEGREE_ANGLE: -90 to 90 degrees, where 0 is the horizon, 90 is zenith, and negative values are below the horizon RADIAN: -π/2 to π/2 radians, where 0 is the horizon, π/2 is zenith, and negative values are below the horizon

    *)
}
Sourceval context_ : string
Sourceval make : dt:Double.t -> az:Double.t -> el:Double.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t