Class: Aws::GeoRoutes::Types::RoadSnapTracePoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::RoadSnapTracePoint
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-georoutes/types.rb
Overview
TracePoint indices for which the provided notice code corresponds to.
Constant Summary collapse
- SENSITIVE =
[:position]
Instance Attribute Summary collapse
-
#heading ⇒ Float
GPS Heading at the position.
-
#position ⇒ Array<Float>
Position defined as ‘[longitude, latitude]`.
-
#speed ⇒ Float
Speed at the specified trace point .
-
#timestamp ⇒ String
Timestamp of the event.
Instance Attribute Details
#heading ⇒ Float
GPS Heading at the position.
1746 1747 1748 1749 1750 1751 1752 1753 |
# File 'lib/aws-sdk-georoutes/types.rb', line 1746 class RoadSnapTracePoint < Struct.new( :heading, :position, :speed, :timestamp) SENSITIVE = [:position] include Aws::Structure end |
#position ⇒ Array<Float>
Position defined as ‘[longitude, latitude]`.
1746 1747 1748 1749 1750 1751 1752 1753 |
# File 'lib/aws-sdk-georoutes/types.rb', line 1746 class RoadSnapTracePoint < Struct.new( :heading, :position, :speed, :timestamp) SENSITIVE = [:position] include Aws::Structure end |
#speed ⇒ Float
Speed at the specified trace point .
Unit: ‘KilometersPerHour`
1746 1747 1748 1749 1750 1751 1752 1753 |
# File 'lib/aws-sdk-georoutes/types.rb', line 1746 class RoadSnapTracePoint < Struct.new( :heading, :position, :speed, :timestamp) SENSITIVE = [:position] include Aws::Structure end |
#timestamp ⇒ String
Timestamp of the event.
1746 1747 1748 1749 1750 1751 1752 1753 |
# File 'lib/aws-sdk-georoutes/types.rb', line 1746 class RoadSnapTracePoint < Struct.new( :heading, :position, :speed, :timestamp) SENSITIVE = [:position] include Aws::Structure end |