Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f6ca8173 authored by Shinru Han's avatar Shinru Han Committed by Automerger Merge Worker
Browse files

Merge "Add docs to SatellitePvt class" into sc-dev am: c247fad2

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/13990307

Change-Id: Ic5d7ad5595cbe9d124ae73124345c676d675693d
parents 20a3ee74 c247fad2
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -25,8 +25,9 @@ import android.os.Parcelable;

/**
 * A class that contains GNSS satellite position, velocity and time information at the
 * signal transmission time {@link GnssMeasurement#getReceivedSvTimeNanos()}.
 * same signal transmission time {@link GnssMeasurement#getReceivedSvTimeNanos()}.
 *
 * <p>The position and velocity must be in ECEF coordinates.
 * @hide
 */
@SystemApi
@@ -39,6 +40,9 @@ public final class SatellitePvt implements Parcelable {

    /**
     * Class containing estimates of the satellite position fields in ECEF coordinate frame.
     *
     * <p>The satellite position must be defined at the time of transmission of the signal
     * receivedSvTimeNs.
     */
    public static final class PositionEcef implements Parcelable {
        private final double mXMeters;
@@ -133,6 +137,9 @@ public final class SatellitePvt implements Parcelable {

    /**
     * Class containing estimates of the satellite velocity fields in the ECEF coordinate frame.
     *
     * <p>The satellite velocity must be defined at the time of transmission of the signal
     * receivedSvTimeNs.
     */
    public static final class VelocityEcef implements Parcelable {
        private final double mXMetersPerSecond;