Class: Aws::GeoRoutes::Types::RoadSnapTracePoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::RoadSnapTracePoint
- Defined in:
- gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb
Overview
TracePoint indices for which the provided notice code corresponds to.
Constant Summary collapse
- SENSITIVE =
[:heading, :position, :speed, :timestamp]
Instance Attribute Summary collapse
-
#heading ⇒ Float
GPS Heading at the position.
-
#position ⇒ Array<Float>
Position in World Geodetic System (WGS 84) format: [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.
2240 2241 2242 2243 2244 2245 2246 2247 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 2240 class RoadSnapTracePoint < Struct.new( :heading, :position, :speed, :timestamp) SENSITIVE = [:heading, :position, :speed, :timestamp] include Aws::Structure end |
#position ⇒ Array<Float>
Position in World Geodetic System (WGS 84) format: [longitude, latitude].
2240 2241 2242 2243 2244 2245 2246 2247 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 2240 class RoadSnapTracePoint < Struct.new( :heading, :position, :speed, :timestamp) SENSITIVE = [:heading, :position, :speed, :timestamp] include Aws::Structure end |
#speed ⇒ Float
Speed at the specified trace point .
Unit: kilometers per hour
2240 2241 2242 2243 2244 2245 2246 2247 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 2240 class RoadSnapTracePoint < Struct.new( :heading, :position, :speed, :timestamp) SENSITIVE = [:heading, :position, :speed, :timestamp] include Aws::Structure end |
#timestamp ⇒ String
Timestamp of the event.
2240 2241 2242 2243 2244 2245 2246 2247 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 2240 class RoadSnapTracePoint < Struct.new( :heading, :position, :speed, :timestamp) SENSITIVE = [:heading, :position, :speed, :timestamp] include Aws::Structure end |