Class: Aws::IoTWireless::Types::Accuracy
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTWireless::Types::Accuracy
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotwireless/types.rb
Overview
The accuracy of the estimated position in meters. An empty value indicates that no position data is available. A value of ‘0.0’ value indicates that position data is available. This data corresponds to the position information that you specified instead of the position computed by solver.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#horizontal_accuracy ⇒ Float
The horizontal accuracy of the estimated position, which is the difference between the estimated location and the actual device location.
-
#vertical_accuracy ⇒ Float
The vertical accuracy of the estimated position, which is the difference between the estimated altitude and actual device latitude in meters.
Instance Attribute Details
#horizontal_accuracy ⇒ Float
The horizontal accuracy of the estimated position, which is the difference between the estimated location and the actual device location.
86 87 88 89 90 91 |
# File 'lib/aws-sdk-iotwireless/types.rb', line 86 class Accuracy < Struct.new( :horizontal_accuracy, :vertical_accuracy) SENSITIVE = [] include Aws::Structure end |
#vertical_accuracy ⇒ Float
The vertical accuracy of the estimated position, which is the difference between the estimated altitude and actual device latitude in meters.
86 87 88 89 90 91 |
# File 'lib/aws-sdk-iotwireless/types.rb', line 86 class Accuracy < Struct.new( :horizontal_accuracy, :vertical_accuracy) SENSITIVE = [] include Aws::Structure end |