Module Values.CalculateIsolinesRequestSource

Calculates areas that can be reached within specified time or distance thresholds from a given point. For example, you can use this operation to determine the area within a 30-minute drive of a store location, find neighborhoods within walking distance of a school, or identify delivery zones based on drive time. Isolines (also known as isochrones for time-based calculations) are useful for various applications including: Service area visualization - Show customers the area you can serve within promised delivery times Site selection - Analyze potential business locations based on population within travel distance Site selection - Determine areas that can be reached within specified response times Route preferences such as avoiding toll roads or ferries are treated as preferences rather than absolute restrictions. If a viable route cannot be calculated while honoring all preferences, some may be ignored. For more information, see Calculate isolines in the Amazon Location Service Developer Guide.

Sourcetype nonrec t = {
  1. allow : IsolineAllowOptions.t option;
    (*

    Enables special road types or features that should be considered for routing even if they might be restricted by default for the selected travel mode. These include high-occupancy vehicle and toll lanes.

    *)
  2. arrivalTime : TimestampWithTimezoneOffset.t option;
    (*

    Determine areas from which Destination can be reached by this time, taking into account predicted traffic conditions and working backward to account for congestion patterns. This attribute cannot be used together with DepartureTime or DepartNow. Specified as an ISO-8601 timestamp with timezone offset. Time format: YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm Examples: 2020-04-22T17:57:24Z 2020-04-22T17:57:24+02:00

    *)
  3. avoid : IsolineAvoidanceOptions.t option;
    (*

    Specifies road types, features, or areas to avoid (if possible) when calculating reachable areas. These are treated as preferences rather than strict constraints—if a route cannot be calculated without using an avoided feature, that avoidance preference may be ignored.

    *)
  4. departNow : SensitiveBoolean.t option;
    (*

    When true, uses the current time as the departure time and takes current traffic conditions into account. This attribute cannot be used together with DepartureTime or ArrivalTime.

    *)
  5. departureTime : TimestampWithTimezoneOffset.t option;
    (*

    Determine areas that can be reached when departing at this time, taking into account predicted traffic conditions. This attribute cannot be used together with ArrivalTime or DepartNow. Specified as an ISO-8601 timestamp with timezone offset. Time format:YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm Examples: 2020-04-22T17:57:24Z 2020-04-22T17:57:24+02:00

    *)
  6. destination : Position.t option;
    (*

    An optional destination point, specified as [longitude, latitude] coordinates. When provided, the service calculates areas from which this destination can be reached within the specified thresholds. This reverses the usual isoline calculation to show areas that could reach your location, rather than areas you could reach from your location. Either Origin or Destination must be provided.

    *)
  7. destinationOptions : IsolineDestinationOptions.t option;
    (*

    Options that control how the destination point is matched to the road network and how routes can approach it. These options help improve travel time accuracy by accounting for real-world access to the destination.

    *)
  8. isolineGeometryFormat : GeometryFormat.t option;
    (*

    The format of the returned IsolineGeometry. Default value:FlexiblePolyline

    *)
  9. isolineGranularity : IsolineGranularityOptions.t option;
    (*

    Controls the detail level of the generated isolines. Higher granularity produces smoother shapes but requires more processing time and results in larger responses.

    *)
  10. key : ApiKey.t option;
    (*

    An Amazon Location Service API Key with access to this action. If omitted, the request must be signed using Signature Version 4.

    *)
  11. optimizeIsolineFor : IsolineOptimizationObjective.t option;
    (*

    Controls the trade-off between calculation speed and isoline precision. Choose FastCalculation for quicker results with less detail, AccurateCalculation for more precise results, or BalancedCalculation for a middle ground. Default value: BalancedCalculation

    *)
  12. optimizeRoutingFor : RoutingObjective.t option;
    (*

    Determines whether routes prioritize shortest travel time (FastestRoute) or shortest physical distance (ShortestRoute) when calculating reachable areas. Default value: FastestRoute

    *)
  13. origin : Position.t option;
    (*

    The starting point for isoline calculations, specified as [longitude, latitude] coordinates. For example, this could be a store location, service center, or any point from which you want to calculate reachable areas. Either Origin or Destination must be provided.

    *)
  14. originOptions : IsolineOriginOptions.t option;
    (*

    Options that control how the origin point is matched to the road network and how routes can depart from it. These options help improve travel time accuracy by accounting for real-world access from the origin.

    *)
  15. thresholds : IsolineThresholds.t;
    (*

    The distance or time thresholds used to determine reachable areas. You can specify up to five thresholds (which all must be the same type) to calculate multiple isolines in a single request. For example, to determine the areas that are reachable within 10 and 20 minutes of the origin, specify time thresholds of 600 and 1200 seconds. You incur a calculation charge for each threshold. Using a large number of thresholds in a request can lead to unexpected charges. For more information, see Routes pricing in the Amazon Location Service Developer Guide.

    *)
  16. traffic : IsolineTrafficOptions.t option;
    (*

    Configures how real-time and historical traffic data affects isoline calculations. Traffic patterns can significantly impact reachable areas, especially during peak hours.

    *)
  17. travelMode : IsolineTravelMode.t option;
    (*

    The mode of transportation to use for calculations. This affects which road types or features can be used, estimated speed, and the traffic levels that are applied. Car—Standard passenger vehicle routing using roads accessible to cars Pedestrian—Walking routes using pedestrian paths, sidewalks, and crossings Scooter—Light two-wheeled vehicle routing using roads and paths accessible to scooters Truck—Commercial truck routing considering vehicle dimensions, weight restrictions, and hazardous material regulations The mode Scooter also applies to motorcycles; set this to Scooter when calculating isolines for motorcycles. Default value: Car

    *)
  18. travelModeOptions : IsolineTravelModeOptions.t option;
    (*

    Additional attributes that refine how reachable areas are calculated based on specific vehicle characteristics. These options help produce more accurate results by accounting for real-world constraints and capabilities. For example: For trucks (Truck), specify dimensions, weight limits, and hazardous cargo restrictions to ensure isolines only include roads that can physically and legally accommodate the vehicle For cars (Car), set maximum speed capabilities or indicate high-occupancy vehicle eligibility to better estimate reachable areas For scooters (Scooter), specify engine type and speed limitations to more accurately model their travel capabilities Without these options, calculations use default assumptions that may not match your specific use case.

    *)
}
Sourceval context_ : string
Sourceval make : ?allow:??? -> ?arrivalTime:??? -> ?avoid:??? -> ?departNow:??? -> ?departureTime:??? -> ?destination:??? -> ?destinationOptions:??? -> ?isolineGeometryFormat:??? -> ?isolineGranularity:??? -> ?key:??? -> ?optimizeIsolineFor:??? -> ?optimizeRoutingFor:??? -> ?origin:??? -> ?originOptions:??? -> ?traffic:??? -> ?travelMode:??? -> ?travelModeOptions:??? -> thresholds:IsolineThresholds.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of SensitiveBoolean.t | `Enum of string | `List of [> `Double of Double.t ] list | `String of TimestampWithTimezoneOffset.t | `Structure of (string * [> `Boolean of SensitiveBoolean.t | `Double of Heading.t | `Enum of string | `Integer of IsolineGranularityOptionsMaxPointsInteger.t | `List of [> `Long of DistanceThresholdListMemberLong.t | `String of TruckRoadType.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `List of [> `Double of Double.t | `List of [> `List of [> `Double of Double.t ] list ] list | `String of PolylineRing.t ] list | `Structure of (string * [> `Integer of Integer.t | `List of [> `List of [> `Double of Double.t ] list ] list | `String of Polyline.t ]) list ]) list ] list | `Structure of (string * [> `List of [> `Double of Double.t | `List of [> `List of [> `Double of Double.t ] list ] list | `String of PolylineRing.t ] list | `Structure of (string * [> `Integer of Integer.t | `List of [> `List of [> `Double of Double.t ] list ] list | `String of Polyline.t ]) list ]) list ]) list ] list | `Long of DistanceMeters.t | `Structure of (string * [> `Double of IsolineCarOptionsMaxSpeedDouble.t | `Enum of string | `Integer of IsolineCarOptionsOccupancyInteger.t | `List of [> `Double of Double.t | `Enum of string ] list | `Long of DistanceMeters.t | `String of SensitiveString.t | `Structure of (string * [> `Integer of IsolineTrailerOptionsAxleCountInteger.t | `Long of WeightKilograms.t | `String of IsolineVehicleLicensePlateLastCharacterString.t ]) list ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t