-
- All Implemented Interfaces:
-
android.os.Parcelable
public final class MMFeedbackInfo implements Parcelable
Map Matching feedback info
-
-
Field Summary
Fields Modifier and Type Field Description private final LongdrTimestampprivate final LatLonlocationprivate final Integerheadingprivate final BooleanisTunnelprivate final Floatconfidenceprivate final Floatprobabilityprivate final FloatdistFromBifurcationBehindprivate final FloatdistToBifurcationAhead
-
Method Summary
Modifier and Type Method Description final LonggetDrTimestamp()The time stamp of the raw GPS data. final LatLongetLocation()The location of map matching feedback, lat/lon is in unit of degree. final IntegergetHeading()The heading of map matching feedback, in unit of degree. final BooleanisTunnel()Whether car in tunnel final FloatgetConfidence()Positioning confidence of the feedback location, range:0.0, 1. final FloatgetProbability()Positioning probability of the feedback location, range:0.0, 1. final FloatgetDistFromBifurcationBehind()Distance from the vehicle to bifurcation point behind Will be -1. final FloatgetDistToBifurcationAhead()Distance from the vehicle to bifurcation point ahead, unit meters Note: -1.0f as default represents invalid. -
-
Method Detail
-
getDrTimestamp
final Long getDrTimestamp()
The time stamp of the raw GPS data. this is CPU time stamp in milliseconds
-
getLocation
final LatLon getLocation()
The location of map matching feedback, lat/lon is in unit of degree.
-
getHeading
final Integer getHeading()
The heading of map matching feedback, in unit of degree. North is zero,clockwise; 0-359, UINT16_MAX as invalid
-
getConfidence
final Float getConfidence()
Positioning confidence of the feedback location, range:0.0, 1.0
-
getProbability
final Float getProbability()
Positioning probability of the feedback location, range:0.0, 1.0
-
getDistFromBifurcationBehind
final Float getDistFromBifurcationBehind()
Distance from the vehicle to bifurcation point behind Will be -1.0f if vehicle is not on the road or the bifurcation point behind the vehicle is not found in the data held by the engine
-
getDistToBifurcationAhead
final Float getDistToBifurcationAhead()
Distance from the vehicle to bifurcation point ahead, unit meters Note: -1.0f as default represents invalid. Note: the return value will be nullopt, if 1 || 2 is true 1.the vehicle is not on the road 2.the vehicle is on the road, and the bifurcation point ahead the vehicle is not found in the data held by the engine
-
-
-
-