Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

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