Module Values.TLEDataSource

Two-line element set (TLE) data.

Sourcetype nonrec t = {
  1. tleLine1 : TleLineOne.t;
    (*

    First line of two-line element set (TLE) data.

    *)
  2. tleLine2 : TleLineTwo.t;
    (*

    Second line of two-line element set (TLE) data.

    *)
  3. validTimeRange : TimeRange.t;
    (*

    The valid time range for the TLE. Time ranges must be continuous without gaps or overlaps.

    *)
}
Sourceval context_ : string
Sourceval make : tleLine1:TleLineOne.t -> tleLine2:TleLineTwo.t -> validTimeRange:TimeRange.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of TleLineOne.t | `Structure of (string * [> `Timestamp of Timestamp.t ]) list ]) 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