From 331748aa07e659b47d686e7ac081f205364901ac Mon Sep 17 00:00:00 2001 From: Yu-Han Yang Date: Tue, 27 Apr 2021 09:36:40 -0700 Subject: [PATCH] Clarify ISB sign in Javadoc Bug: 162508535 Test: doc update only Change-Id: I3267a8b02d47e780cf1124a0882a26958383dd5f --- location/java/android/location/GnssMeasurement.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/location/java/android/location/GnssMeasurement.java b/location/java/android/location/GnssMeasurement.java index 242d9a3627db..f4466782ac8a 100644 --- a/location/java/android/location/GnssMeasurement.java +++ b/location/java/android/location/GnssMeasurement.java @@ -1530,6 +1530,10 @@ public final class GnssMeasurement implements Parcelable { * *

The value does not include the inter-frequency Ionospheric bias. * + *

The sign of the value is defined by the following equation: + *

+     *     corrected pseudorange = raw pseudorange - FullInterSignalBiasNanos
+ * *

The value is only available if {@link #hasFullInterSignalBiasNanos()} is {@code true}. */ public double getFullInterSignalBiasNanos() { @@ -1626,6 +1630,10 @@ public final class GnssMeasurement implements Parcelable { * type in {@link GnssClock#getReferenceConstellationTypeForIsb()) * * + *

The sign of the value is defined by the following equation: + *

+     *     corrected pseudorange = raw pseudorange - SatelliteInterSignalBiasNanos
+ * *

The value is only available if {@link #hasSatelliteInterSignalBiasNanos()} is {@code * true}. */