Module Values.MapMatchingConfigSource

The input structure for Map Matching operation type.

Sourcetype nonrec t = {
  1. idAttributeName : String_.t;
    (*

    The field name for the data that describes the identifier representing a collection of GPS points belonging to an individual trace.

    *)
  2. timestampAttributeName : String_.t;
    (*

    The name of the timestamp attribute.

    *)
  3. xAttributeName : String_.t;
    (*

    The name of the X-attribute

    *)
  4. yAttributeName : String_.t;
    (*

    The name of the Y-attribute

    *)
}
Sourceval context_ : string
Sourceval make : idAttributeName:String_.t -> timestampAttributeName:String_.t -> xAttributeName:String_.t -> yAttributeName:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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