GnssClock.FullBiasNanos Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the difference between hardware clock (#getTimeNanos()
) inside GPS receiver and
the true GPS time since 0000Z, January 6, 1980, in nanoseconds.
public long FullBiasNanos { [Android.Runtime.Register("getFullBiasNanos", "()J", "", ApiSince=24)] get; }
[<get: Android.Runtime.Register("getFullBiasNanos", "()J", "", ApiSince=24)>]
member this.FullBiasNanos : int64
Property Value
- Attributes
Remarks
Gets the difference between hardware clock (#getTimeNanos()
) inside GPS receiver and the true GPS time since 0000Z, January 6, 1980, in nanoseconds.
This value is available if the receiver has estimated GPS time. If the computed time is for a non-GPS constellation, the time offset of that constellation to GPS has to be applied to fill this value. The value is only available if #hasFullBiasNanos()
is true
.
The error estimate for the sum of this field and #getBiasNanos
is #getBiasUncertaintyNanos()
.
The sign of the value is defined by the following equation:
local estimate of GPS time = TimeNanos - (FullBiasNanos + BiasNanos)
Java documentation for android.location.GnssClock.getFullBiasNanos()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.