java.lang.Object | |
↳ | dji.common.remotecontroller.DJIRCGPSData |
Remote Controller's GPS data. Only Inspire and M100 Remote Controllers have GPS.
Nested Classes | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
class | DJIRCGPSData.DJIRCGpsTime | Remote Controller's GPS time. |
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
public float | accuracy | The margin of error, in meters, for the GPS location. | |||||||||
public boolean | isValid | true if the GPS data is valid. |
|||||||||
public double | latitude | The Remote Controller's GPS latitude value in degrees. | |||||||||
public double | longitude | The Remote Controller's GPS longitude value in degrees. | |||||||||
public int | satelliteCount | The number of GPS satellites the Remote Controller sees. | |||||||||
public float | speedEast | The Remote Controller's speed in the East direction in meters/second. | |||||||||
public float | speedNorth | The Remote Controller's speed in the North direction in meters/second. | |||||||||
public DJIRCGPSData.DJIRCGpsTime | time | The Remote Controller's GPS time. |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
DJIRCGPSData() | |||||||||||
DJIRCGPSData(DJIRCGPSData.DJIRCGpsTime time, double latitude, double longitude, float speedEast, float speedNorth, int satelliteCount, float accuracy, boolean isValid) |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
The margin of error, in meters, for the GPS location.
true
if the GPS data is valid. The data is not valid if
there are too few satellites or the signal strength is too low.
The Remote Controller's GPS latitude value in degrees.
The Remote Controller's GPS longitude value in degrees.
The number of GPS satellites the Remote Controller sees.
The Remote Controller's speed in the East direction in meters/second. A negative speed means the Remote Controller is moving in the West direction.
The Remote Controller's speed in the North direction in meters/second. A negative speed means the Remote Controller is moving in the South direction.