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

Commit 1eb57933 authored by Shinru Han's avatar Shinru Han Committed by Android (Google) Code Review
Browse files

Merge "Updates API doc of GnssCorrectionComponent" into main

parents 7332fdce 0c1fae45
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -221,7 +221,10 @@ public final class GnssCorrectionComponent implements Parcelable {
        /** Correction to be added to the measured pseudorange, in meters. */
        private final double mCorrectionMeters;

        /** Uncertainty of the correction, in meters. */
        /**
         * Uncertainty of the correction, in meters.
         * If the uncertainty is not available, this field should be set to 0.
         */
        private final double mCorrectionUncertaintyMeters;

        /**
@@ -236,7 +239,8 @@ public final class GnssCorrectionComponent implements Parcelable {
         * Creates a PseudorangeCorrection.
         *
         * @param correctionMeters Correction to be added to the measured pseudorange, in meters.
         * @param correctionUncertaintyMeters Uncertainty of the correction, in meters.
         * @param correctionUncertaintyMeters Uncertainty of the correction, in meters. If the
         *     uncertainty is not available, this field should be set to 0.
         * @param correctionRateMetersPerSecond Linear approximation of the change in correction
         *     over time. Intended usage is to adjust the correction using the formula:
         *     correctionMeters + correctionRateMetersPerSecond * delta_seconds Where