Most visited

Recently visited

Added in API level 3
Deprecated since API level 24

GpsSatellite

public final class GpsSatellite
extends Object

java.lang.Object
   ↳ android.location.GpsSatellite


此类在API级别24中已被弃用。
使用GnssStatusGnssStatus.Callback

该类表示GPS卫星的当前状态。 本课程与GpsStatus课程共同使用。

Summary

Public methods

float getAzimuth()

以度为单位返回卫星的方位角。

float getElevation()

以度为单位返回卫星的高程。

int getPrn()

返回卫星的PRN(伪随机数)。

float getSnr()

返回卫星的信噪比。

boolean hasAlmanac()

如果GPS引擎具有卫星的年历数据,则返回true。

boolean hasEphemeris()

如果GPS引擎具有卫星的星历数据,则返回true。

boolean usedInFix()

在计算最新的GPS定位时,如果GPS引擎使用卫星,则返回true。

Inherited methods

From class java.lang.Object

Public methods

getAzimuth

Added in API level 3
float getAzimuth ()

以度为单位返回卫星的方位角。 方位角可以在0到360之间变化。

Returns
float the azimuth in degrees

getElevation

Added in API level 3
float getElevation ()

以度为单位返回卫星的高程。 海拔高度可以在0到90之间变化。

Returns
float the elevation in degrees

getPrn

Added in API level 3
int getPrn ()

返回卫星的PRN(伪随机数)。

Returns
int PRN number

getSnr

Added in API level 3
float getSnr ()

返回卫星的信噪比。

Returns
float the signal to noise ratio

hasAlmanac

Added in API level 3
boolean hasAlmanac ()

如果GPS引擎具有卫星的年历数据,则返回true。

Returns
boolean true if the satellite has almanac data

hasEphemeris

Added in API level 3
boolean hasEphemeris ()

如果GPS引擎具有卫星的星历数据,则返回true。

Returns
boolean true if the satellite has ephemeris data

usedInFix

Added in API level 3
boolean usedInFix ()

在计算最新的GPS定位时,如果GPS引擎使用卫星,则返回true。

Returns
boolean true if the satellite was used to compute the most recent fix.

Hooray!