Module Values.OEMEphemerisSource

Ephemeris data in Orbit Ephemeris Message (OEM) format. AWS Ground Station processes OEM ephemerides according to the CCSDS standard with some extra restrictions. OEM files should be in KVN format. For more detail about the OEM format that AWS Ground Station supports, see OEM ephemeris format in the AWS Ground Station user guide.

Sourcetype nonrec t = {
  1. s3Object : S3Object.t option;
    (*

    The Amazon S3 object that contains the ephemeris data.

    *)
  2. oemData : UnboundedString.t option;
    (*

    OEM data that you provide directly instead of using an Amazon S3 object.

    *)
}
Sourceval make : ?s3Object:??? -> ?oemData:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UnboundedString.t | `Structure of (string * [> `String of S3BucketName.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