Module Values.RoadSnapTracePointSource

TracePoint indices for which the provided notice code corresponds to.

Sourcetype nonrec t = {
  1. heading : Heading.t option;
    (*

    GPS Heading at the position.

    *)
  2. position : Position.t;
    (*

    Position in World Geodetic System (WGS 84) format: [longitude, latitude].

    *)
  3. speed : SpeedKilometersPerHour.t option;
    (*

    Speed at the specified trace point . Unit: kilometers per hour

    *)
  4. timestamp : TimestampWithTimezoneOffset.t option;
    (*

    Timestamp of the event.

    *)
}
Sourceval context_ : string
Sourceval make : ?heading:??? -> ?speed:??? -> ?timestamp:??? -> position:Position.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Heading.t | `List of [> `Double of Double.t ] list | `String of TimestampWithTimezoneOffset.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