com.supermap.plugin
Class LocationManagePlugin.GPSData
- java.lang.Object
 - 
- com.supermap.plugin.LocationManagePlugin.GPSData
 
 
- 
- All Implemented Interfaces:
 - java.io.Serializable
 
- Enclosing class:
 - LocationManagePlugin
 
public static class LocationManagePlugin.GPSData extends java.lang.Object implements java.io.SerializableThis class is the inner class ofLocationManagePlugin, which identifies the detailed information of the current GPS data, such as: longitude, latitude, azimuth and so on.- See Also:
 - Serialized Form
 
 
- 
- 
Field Summary
Fields Modifier and Type Field and Description doubledAltitudeAltitude means the mean level of the sea.doubledBearingThe azimuth represents the direction of travel, and the unit is degree.doubledLatitudeLatitude.doubledLongitudeLongitude.doubledSpeedThe travel speed. the unit is meter per second.longlTimeThe capture time of this GPSData.intnDayDay.intnEastingThe identifier of eastern and western hemispheres. 0 means the western Hemisphere, and 1 means the eastern Hemisphere.intnFixModeThe identifier of location mode. 0 means that the GPS didn't locate and 1 means that the GPS located.intnHourHour.intnMinuteMinute.intnMonthMonth.intnNorthingThe identifier of southern and northern hemispheres. 0 means the Southern Hemisphere, and 1 means the Northern Hemisphere.intnQualityIndicatorThe identifier of the GPS status. 0 means that the GPS didn't locate and 1 means that the GPS located.intnSatellitesThe number of the visible satellites.intnSecondSecond.intnYearYear. 
- 
Constructor Summary
Constructors Constructor and Description GPSData() 
 - 
 
- 
- 
Field Detail
- 
dLatitude
public double dLatitude
Latitude. The unit is degree. 
- 
dLongitude
public double dLongitude
Longitude. The unit is degree. 
- 
nNorthing
public int nNorthing
The identifier of southern and northern hemispheres. 0 means the Southern Hemisphere, and 1 means the Northern Hemisphere. 
- 
nEasting
public int nEasting
The identifier of eastern and western hemispheres. 0 means the western Hemisphere, and 1 means the eastern Hemisphere. 
- 
nQualityIndicator
public int nQualityIndicator
The identifier of the GPS status. 0 means that the GPS didn't locate and 1 means that the GPS located. 
- 
nFixMode
public int nFixMode
The identifier of location mode. 0 means that the GPS didn't locate and 1 means that the GPS located. 
- 
nSatellites
public int nSatellites
The number of the visible satellites. 
- 
dBearing
public double dBearing
The azimuth represents the direction of travel, and the unit is degree. Due north is 0 and clockwise direction. The range is form 0 to 360. 
- 
dSpeed
public double dSpeed
The travel speed. the unit is meter per second. 
- 
dAltitude
public double dAltitude
Altitude means the mean level of the sea. The unit is meter. 
- 
nYear
public int nYear
Year. 
- 
nMonth
public int nMonth
Month. 
- 
nDay
public int nDay
Day. 
- 
nHour
public int nHour
Hour. 
- 
nMinute
public int nMinute
Minute. 
- 
nSecond
public int nSecond
Second. 
- 
lTime
public long lTime
The capture time of this GPSData. The unit is millisecond. 
 - 
 
 -