Class: Aws::IoTWireless::Types::Accuracy

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iotwireless/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

Instance Attribute Details

#horizontal_accuracyFloat

The horizontal accuracy of the estimated position, which is the difference between the estimated location and the actual device location.

Returns:

  • (Float)


86
87
88
89
90
91
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 86

class Accuracy < Struct.new(
  :horizontal_accuracy,
  :vertical_accuracy)
  SENSITIVE = []
  include Aws::Structure
end

#vertical_accuracyFloat

The vertical accuracy of the estimated position, which is the difference between the estimated altitude and actual device latitude in meters.

Returns:

  • (Float)


86
87
88
89
90
91
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 86

class Accuracy < Struct.new(
  :horizontal_accuracy,
  :vertical_accuracy)
  SENSITIVE = []
  include Aws::Structure
end