Module Values.AccuracySource

The accuracy of the estimated position in meters. An empty value indicates that no position data is available. A value of ‘0.0’ value indicates that position data is available. This data corresponds to the position information that you specified instead of the position computed by solver.

Sourcetype nonrec t = {
  1. horizontalAccuracy : HorizontalAccuracy.t option;
    (*

    The horizontal accuracy of the estimated position, which is the difference between the estimated location and the actual device location.

    *)
  2. verticalAccuracy : VerticalAccuracy.t option;
    (*

    The vertical accuracy of the estimated position, which is the difference between the estimated altitude and actual device latitude in meters.

    *)
}
Sourceval make : ?horizontalAccuracy:??? -> ?verticalAccuracy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of HorizontalAccuracy.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