Package com.signalquest.api
Class Location
java.lang.Object
com.signalquest.api.Location
Contains the sensor's location information.
-
Constructor Summary
ConstructorDescriptionLocation
(long iTow, double latitude, double longitude, double height, double horizontalAccuracy, double verticalAccuracy) Constructor for serialization (e.g. -
Method Summary
Modifier and TypeMethodDescriptiondouble
The height above ellipsoid, in metersdouble
The horizontal accuracy, in meterslong
getITow()
The GPS time of week, in millisecondsdouble
The latitude, in decimal degrees (WGS 84)double
The longitude, in decimal degrees (WGS 84)double
The vertical accuracy, in meters
-
Constructor Details
-
Location
public Location(long iTow, double latitude, double longitude, double height, double horizontalAccuracy, double verticalAccuracy) Constructor for serialization (e.g. Android Parcelable)
-
-
Method Details
-
getITow
public long getITow()The GPS time of week, in milliseconds -
getLatitude
public double getLatitude()The latitude, in decimal degrees (WGS 84) -
getLongitude
public double getLongitude()The longitude, in decimal degrees (WGS 84) -
getHeight
public double getHeight()The height above ellipsoid, in meters -
getHorizontalAccuracy
public double getHorizontalAccuracy()The horizontal accuracy, in meters -
getVerticalAccuracy
public double getVerticalAccuracy()The vertical accuracy, in meters
-