Interface Gnss.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Gnss.Builder,Gnss>,SdkBuilder<Gnss.Builder,Gnss>,SdkPojo
- Enclosing class:
- Gnss
public static interface Gnss.Builder extends SdkPojo, CopyableBuilder<Gnss.Builder,Gnss>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Gnss.BuilderassistAltitude(Float assistAltitude)Optional assistance altitude, which is the altitude of the device at capture time, specified in meters above the WGS84 reference ellipsoid.Gnss.BuilderassistPosition(Float... assistPosition)Optional assistance position information, specified using latitude and longitude values in degrees.Gnss.BuilderassistPosition(Collection<Float> assistPosition)Optional assistance position information, specified using latitude and longitude values in degrees.Gnss.BuildercaptureTime(Float captureTime)Optional parameter that gives an estimate of the time when the GNSS scan information is taken, in seconds GPS time (GPST).Gnss.BuildercaptureTimeAccuracy(Float captureTimeAccuracy)Optional value that gives the capture time estimate accuracy, in seconds.Gnss.Builderpayload(String payload)Payload that contains the GNSS scan result, or NAV message, in hexadecimal notation.Gnss.Builderuse2DSolver(Boolean use2DSolver)Optional parameter that forces 2D solve, which modifies the positioning algorithm to a 2D solution problem.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
payload
Gnss.Builder payload(String payload)
Payload that contains the GNSS scan result, or NAV message, in hexadecimal notation.
- Parameters:
payload- Payload that contains the GNSS scan result, or NAV message, in hexadecimal notation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
captureTime
Gnss.Builder captureTime(Float captureTime)
Optional parameter that gives an estimate of the time when the GNSS scan information is taken, in seconds GPS time (GPST). If capture time is not specified, the local server time is used.
- Parameters:
captureTime- Optional parameter that gives an estimate of the time when the GNSS scan information is taken, in seconds GPS time (GPST). If capture time is not specified, the local server time is used.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
captureTimeAccuracy
Gnss.Builder captureTimeAccuracy(Float captureTimeAccuracy)
Optional value that gives the capture time estimate accuracy, in seconds. If capture time accuracy is not specified, default value of 300 is used.
- Parameters:
captureTimeAccuracy- Optional value that gives the capture time estimate accuracy, in seconds. If capture time accuracy is not specified, default value of 300 is used.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
assistPosition
Gnss.Builder assistPosition(Collection<Float> assistPosition)
Optional assistance position information, specified using latitude and longitude values in degrees. The coordinates are inside the WGS84 reference frame.
- Parameters:
assistPosition- Optional assistance position information, specified using latitude and longitude values in degrees. The coordinates are inside the WGS84 reference frame.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
assistPosition
Gnss.Builder assistPosition(Float... assistPosition)
Optional assistance position information, specified using latitude and longitude values in degrees. The coordinates are inside the WGS84 reference frame.
- Parameters:
assistPosition- Optional assistance position information, specified using latitude and longitude values in degrees. The coordinates are inside the WGS84 reference frame.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
assistAltitude
Gnss.Builder assistAltitude(Float assistAltitude)
Optional assistance altitude, which is the altitude of the device at capture time, specified in meters above the WGS84 reference ellipsoid.
- Parameters:
assistAltitude- Optional assistance altitude, which is the altitude of the device at capture time, specified in meters above the WGS84 reference ellipsoid.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
use2DSolver
Gnss.Builder use2DSolver(Boolean use2DSolver)
Optional parameter that forces 2D solve, which modifies the positioning algorithm to a 2D solution problem. When this parameter is specified, the assistance altitude should have an accuracy of at least 10 meters.
- Parameters:
use2DSolver- Optional parameter that forces 2D solve, which modifies the positioning algorithm to a 2D solution problem. When this parameter is specified, the assistance altitude should have an accuracy of at least 10 meters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-