Class: Aws::GeoRoutes::Types::IsolineOriginOptions

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-georoutes/types.rb

Overview

Options that control how the origin point is interpreted when calculating reachable areas. These options affect which roads are considered accessible from the starting point and how initial routing decisions are made.

Constant Summary collapse

SENSITIVE =
[:avoid_actions_for_distance, :heading]

Instance Attribute Summary collapse

Instance Attribute Details

#avoid_actions_for_distanceInteger

The distance in meters from the origin point within which certain routing actions (such as U-turns or left turns across traffic) are restricted. This helps generate more practical routes by avoiding potentially dangerous maneuvers near the starting point.

Returns:

  • (Integer)


1499
1500
1501
1502
1503
1504
1505
1506
# File 'lib/aws-sdk-georoutes/types.rb', line 1499

class IsolineOriginOptions < Struct.new(
  :avoid_actions_for_distance,
  :heading,
  :matching,
  :side_of_street)
  SENSITIVE = [:avoid_actions_for_distance, :heading]
  include Aws::Structure
end

#headingFloat

Initial direction of travel in degrees (0-360, where 0 is north). This affects which road segments are considered accessible from the starting point and is particularly useful when the origin is on a divided road or at a complex intersection.

Returns:

  • (Float)


1499
1500
1501
1502
1503
1504
1505
1506
# File 'lib/aws-sdk-georoutes/types.rb', line 1499

class IsolineOriginOptions < Struct.new(
  :avoid_actions_for_distance,
  :heading,
  :matching,
  :side_of_street)
  SENSITIVE = [:avoid_actions_for_distance, :heading]
  include Aws::Structure
end

#matchingTypes::IsolineMatchingOptions

Controls how the origin point is matched to the road network, including search radius and matching strategy.



1499
1500
1501
1502
1503
1504
1505
1506
# File 'lib/aws-sdk-georoutes/types.rb', line 1499

class IsolineOriginOptions < Struct.new(
  :avoid_actions_for_distance,
  :heading,
  :matching,
  :side_of_street)
  SENSITIVE = [:avoid_actions_for_distance, :heading]
  include Aws::Structure
end

#side_of_streetTypes::IsolineSideOfStreetOptions

Controls which side of the street is considered accessible from the origin point, particularly important for divided roads where building entrances or parking access may only be available from one direction.



1499
1500
1501
1502
1503
1504
1505
1506
# File 'lib/aws-sdk-georoutes/types.rb', line 1499

class IsolineOriginOptions < Struct.new(
  :avoid_actions_for_distance,
  :heading,
  :matching,
  :side_of_street)
  SENSITIVE = [:avoid_actions_for_distance, :heading]
  include Aws::Structure
end