public class

DJIRCGPSData

extends Object
java.lang.Object
   ↳ dji.common.remotecontroller.DJIRCGPSData

Class Overview

Remote Controller's GPS data. Only Inspire and M100 Remote Controllers have GPS.

Summary

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

Fields

public float accuracy

The margin of error, in meters, for the GPS location.

public boolean isValid

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.

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. A negative speed means the Remote Controller is moving in the West direction.

public float speedNorth

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.

public DJIRCGPSData.DJIRCGpsTime time

The Remote Controller's GPS time.

Public Constructors

public DJIRCGPSData ()

public DJIRCGPSData (DJIRCGPSData.DJIRCGpsTime time, double latitude, double longitude, float speedEast, float speedNorth, int satelliteCount, float accuracy, boolean isValid)