arcgis.features.use_proximity module¶
These functions help you answer one of the most common questions posed in spatial analysis: “What is near what?”
connect_origins_to_destinations measures the travel time or distance between pairs of points. create_buffers create areas of equal distance from features. create_drive_time_areas finds areas around locations that can be reached within a time period. find_nearest identifies those places that are the closest to known locations. plan_routes determines the best way to route a fleet of vehicles to visit many stops.
connect_origins_to_destinations¶
-
use_proximity.
connect_origins_to_destinations
(destinations_layer, measurement_type='DrivingTime', origins_layer_route_id_field=None, destinations_layer_route_id_field=None, time_of_day=None, time_zone_for_time_of_day='GeoLocal', output_name=None, context=None, gis=None, estimate=False, point_barrier_layer=None, line_barrier_layer=None, polygon_barrier_layer=None)¶ The Connect Origins to Destinations task measures the travel time or distance between pairs of points. Using this tool, you can
Calculate the total distance or time commuters travel on their home-to-work trips.
Measure how far customers are traveling to shop at your stores. Use this information to define your market reach, especially when targeting advertising campaigns or choosing new store locations.
Calculate the expected trip mileage for your fleet of vehicles. Afterward, run the Summarize Within tool to report mileage by state or other region.
You provide starting and ending points, and the tool returns a layer containing route lines, including measurements, between the paired origins and destinations.
Argument
Description
origins_layer
Required layer. The starting point or points of the routes to be generated. See Feature Input.
destinations_layer
Required layer. The routes end at points in the destinations layer. See Feature Input.
measurement_type
Required string. The origins and destinations can be connected by measuring straight-line distance, or by measuring travel time or travel distance along a street network using various modes of transportation known as travel modes.
Valid values are a string, StraightLine, which indicates Euclidean distance to be used as distance measure or a Python dictionary representing settings for a travel mode.
When using a travel mode for the measurement_type, you need to specify a dictionary containing the settings for a travel mode supported by your organization. The code in the example section below generates a valid Python dictionary and then passes it as the value for the measurement_type parameter.
Supported travel modes: [‘Driving Distance’, ‘Driving Time’, ‘Rural Driving Distance’, ‘Rural Driving Time’, ‘Trucking Distance’, ‘Trucking Time’, ‘Walking Distance’, ‘Walking Time’]
origins_layer_route_id_field
Optional string. Specify the field in the origins layer containing the IDs that pair origins with destinations.
The ID values must uniquely identify points in the origins layer.
Each ID value must also correspond with exactly one route ID value in the destinations layer. Route IDs that match across the layers create origin-destination pairs, which the tool connects together.
Specifying origins_layer_route_id_field is optional when there is exactly one point feature in the origins or destinations layer. The tool will connect all origins to the one destination or the one origin to all destinations, depending on which layer contains one point.
destinations_layer_route_id_field
Optional string. Specify the field in the destinations layer containing the IDs that pair origins with destinations.
The ID values must uniquely identify points in the destinations layer.
Each ID value must also correspond with exactly one route ID value in the origins layer. Route IDs that match across the layers create origin-destination pairs, which the tool connects together.
Specifying destinations_layer_route_id_field is optional when there is exactly one point feature in the origins or destinations layer. The tool will connect all origins to the one destination or the one origin to all destinations, depending on which layer contains one point.
time_of_day
Optional datetime.datetime. Specify whether travel times should consider traffic conditions. To use traffic in the analysis, set measurement_type to a travel mode object whose impedance_attribute_name property is set to travel_time and assign a value to time_of_day. (A travel mode with other impedance_attribute_name values don’t support traffic.) The time_of_day value represents the time at which travel begins, or departs, from the origin points. The time is specified as datetime.datetime.
The service supports two kinds of traffic: typical and live. Typical traffic references travel speeds that are made up of historical averages for each five-minute interval spanning a week. Live traffic retrieves speeds from a traffic feed that processes phone probe records, sensors, and other data sources to record actual travel speeds and predict speeds for the near future.
The data coverage page shows the countries Esri currently provides traffic data for.
Typical Traffic:
To ensure the task uses typical traffic in locations where it is available, choose a time and day of the week, and then convert the day of the week to one of the following dates from 1990:
Monday—1/1/1990
Tuesday—1/2/1990
Wednesday—1/3/1990
Thursday—1/4/1990
Friday—1/5/1990
Saturday—1/6/1990
Sunday—1/7/1990
Set the time and date as datetime.datetime.
For example, to solve for 1:03 p.m. on Thursdays, set the time and date to 1:03 p.m., 4 January 1990; and convert to datetime eg. datetime.datetime(1990, 1, 4, 1, 3).
Live Traffic:
To use live traffic when and where it is available, choose a time and date and convert to datetime.
Esri saves live traffic data for 12 hours and references predictive data extending 12 hours into the future. If the time and date you specify for this parameter is outside the 24-hour time window, or the travel time in the analysis continues past the predictive data window, the task falls back to typical traffic speeds.
Examples: from datetime import datetime
“time_of_day”: datetime(1990, 1, 4, 1, 3) # 13:03, 4 January 1990. Typical traffic on Thursdays at 1:03 p.m.
“time_of_day”: datetime(1990, 1, 7, 17, 0) # 17:00, 7 January 1990. Typical traffic on Sundays at 5:00 p.m.
“time_of_day”: datetime(2014, 10, 22, 8, 0) # 8:00, 22 October 2014. If the current time is between 8:00 p.m., 21 Oct. 2014 and 8:00 p.m., 22 Oct. 2014, live traffic speeds are referenced in the analysis; otherwise, typical traffic speeds are referenced.
“time_of_day”: datetime(2015, 3, 18, 10, 20) # 10:20, 18 March 2015. If the current time is between 10:20 p.m., 17 Mar. 2015 and 10:20 p.m., 18 Mar. 2015, live traffic speeds are referenced in the analysis; otherwise, typical traffic speeds are referenced.
time_zone_for_time_of_day
Optional string. Specify the time zone or zones of the timeOfDay parameter. Choice list: [‘GeoLocal’, ‘UTC’]
GeoLocal-refers to the time zone in which the originsLayer points are located.
UTC-refers to Coordinated Universal Time.
include_route_layers
Optional Boolean. When include_route_layers is set to true, each route from the result is also saved as a route layer item. A route layer includes all the information for a particular route such as the stops assigned to the route as well as the travel directions. Creating route layers is useful if you want to share individual routes with other members in your organization. The route layers use the output feature service name provided in the outputName parameter as a prefix and the route name generated as part of the analysis is added to create a unique name for each route layer.
Caution: Route layers cannot be created when the output is a feature collection. The task will raise an error if output_name is not specified (which indicates feature collection output) and include_route_layers is true.
The maximum number of route layers that can be created is 1,000. If the result contains more than 1,000 routes and include_route_layers is true, the task will only create the output feature service.
output_name
Optional string. If provided, the task will create a feature layer of the results. You define the name of the layer. If output_name is not supplied, the task will return a feature collection.
context
Optional string. Additional settings such as processing extent and output spatial reference. For calculate_density, there are two settings.
Extent (extent)-a bounding box that defines the analysis area. Only those points in the origins_layer and destinations_layer that intersect the bounding box will be analyzed.
Output Spatial Reference (outSR)
If the output is a feature service, the spatial reference will be the same as originsLayer. Setting outSR for feature services has no effect.
If the output is a feature collection, the features will be in the spatial reference of the outSRvalue or the spatial reference of originsLayer when outSR is not specified.
gis
Optional, the GIS on which this tool runs. If not specified, the active GIS is used.
estimate
Optional Boolean. Is true, the number of credits needed to run the operation will be returned as a float.
point_barrier_layer
Optional layer. Specify one or more point features that act as temporary restrictions (in other words, barriers) when traveling on the underlying streets.
A point barrier can model a fallen tree, an accident, a downed electrical line, or anything that completely blocks traffic at a specific position along the street. Travel is permitted on the street but not through the barrier. See Feature Input.
line_barrier_layer
Optional layer. Specify one or more line features that prohibit travel anywhere the lines intersect the streets.
A line barrier prohibits travel anywhere the barrier intersects the streets. For example, a parade or protest that blocks traffic across several street segments can be modeled with a line barrier. See Feature Input.
polygon_barrier_layer
Optional string. Specify one or more polygon features that completely restrict travel on the streets intersected by the polygons.
One use of this type of barrier is to model floods covering areas of the street network and making road travel there impossible. See Feature Input.
- Returns
dict with the following keys:
”routes_layer” : layer (FeatureCollection)
”unassigned_origins_layer” : layer (FeatureCollection)
”unassigned_destinations_layer” : layer (FeatureCollection)
USAGE EXAMPLE: To retrieve trvel modes and run connect_origins_to_destinations tool. This example creates route between esri regional offices to esri headquarter. import arcgis.network as network route_service = network.RouteLayer(gis.properties.helperServices.route.url, gis=gis) travel_mode = [i for i in route_service.retrieve_travel_modes()['supportedTravelModes'] if i['name'] == 'Rural Driving Distance'][0] routes = connect_origins_to_destinations(origins_layer=esri_regional, destinations_layer=dest_layer, measurement_type=travel_mode, time_of_day=datetime(1990, 1, 4, 1, 3), output_name="routes_from_offices_to_hq")
create_buffers¶
-
use_proximity.
create_buffers
(distances=[], field=None, units='Meters', dissolve_type='None', ring_type='Disks', side_type='Full', end_type='Round', output_name=None, context=None, gis=None, estimate=False)¶ Creates buffer polygon(s) around input features.
- input_layerRequired layer (see Feature Input in documentation)
The input to be buffered.
- distancesOptional list of floats
The distance(s) that will be buffered.
- fieldOptional string
Buffers will be created using field values.
- unitsOptional string
The linear unit to be used with the distance value(s).
- dissolve_typeOptional string
Specifies the dissolve to be performed to remove buffer overlap.
- ring_typeOptional string
The ring type.
- side_typeOptional string
The side(s) of the input that will be buffered.
- end_typeOptional string
The shape of the buffer at the end of buffered line features.
- output_nameOptional string
Additional properties such as output feature service name.
- contextOptional string
Additional settings such as processing extent and output spatial reference.
- gis :
Optional, the GIS on which this tool runs. If not specified, the active GIS is used.
- estimate :
Optional Boolean. If True, the number of credits to run the operation will be returned.
buffer_layer : layer (FeatureCollection)
create_drive_time_areas¶
-
use_proximity.
create_drive_time_areas
(break_values=[5, 10, 15], break_units='Minutes', travel_mode='Driving', overlap_policy='Overlap', time_of_day=None, time_zone_for_time_of_day='GeoLocal', output_name=None, context=None, gis=None, estimate=False)¶ input_layer : Required layer (see Feature Input in documentation)
break_values : Optional list of floats
break_units : Optional string
travel_mode : Optional string
overlap_policy : Optional string
time_of_day : Optional datetime.datetime
time_zone_for_time_of_day : Optional string
- output_nameOptional string
Additional properties such as output feature service name.
- contextOptional string
Additional settings such as processing extent and output spatial reference.
- gis :
Optional, the GIS on which this tool runs. If not specified, the active GIS is used.
- estimate :
Optional Boolean. If True, the number of credits to run the operation will be returned.
drive_time_areas_layer : layer (FeatureCollection)
find_nearest¶
-
use_proximity.
find_nearest
(near_layer, measurement_type='StraightLine', max_count=100, search_cutoff=2147483647, search_cutoff_units=None, time_of_day=None, time_zone_for_time_of_day='GeoLocal', output_name=None, context=None, gis=None, estimate=False)¶ Measures the straight-line distance, driving distance, or driving time from features in the analysis layer to features in the near layer, and copies the nearest features in the near layer to a new layer. Returns a layer containing the nearest features and a line layer that links the start locations to their nearest locations.
- analysis_layerRequired layer (see Feature Input in documentation)
For each feature in this layer, the task finds the nearest features from the nearLayer.
- near_layerRequired layer (see Feature Input in documentation)
The features from which the nearest locations are found.
- measurement_typeRequired string
The nearest locations can be determined by measuring straight-line distance, driving distance, or driving time
- max_countOptional int
The maximum number of near locations to find for each feature in analysisLayer.
- search_cutoffOptional float
Limits the search range to this value
- search_cutoff_unitsOptional string
The units for the value specified as searchCutoff
- time_of_dayOptional datetime.datetime
When measurementType is DrivingTime, this value specifies the time of day to be used for driving time calculations based on traffic.
time_zone_for_time_of_day : Optional string
- output_nameOptional string
Additional properties such as output feature service name
- contextOptional string
Additional settings such as processing extent and output spatial reference
- gis :
Optional, the GIS on which this tool runs. If not specified, the active GIS is used.
- estimate :
Optional Boolean. If True, the number of credits to run the operation will be returned.
- dict with the following keys:
“nearest_layer” : layer (FeatureCollection) “connecting_lines_layer” : layer (FeatureCollection)
plan_routes¶
-
use_proximity.
plan_routes
(route_count, max_stops_per_route, route_start_time, start_layer, start_layer_route_id_field=None, return_to_start=True, end_layer=None, end_layer_route_id_field=None, travel_mode='Driving', stop_service_time=0, max_route_time=525600, include_route_layers=False, output_name=None, context=None, gis=None, estimate=False)¶ You provide a set of stops and the number of vehicles available to visit the stops, and Plan Routes determines how to efficiently assign the stops to the vehicles and route the vehicles to the stops.
Use this tool to plan work for a mobile team of inspectors, appraisers, in-home support service providers, and others; deliver or pick up items from remote locations; or offer transportation services to people.
stops_layer : Required layer (see Feature Input in documentation)
route_count : Required int
max_stops_per_route : Required int
route_start_time : Required datetime.datetime
start_layer : Required layer (see Feature Input in documentation)
start_layer_route_id_field : Optional string
return_to_start : Optional bool
end_layer : Optional layer (see Feature Input in documentation)
end_layer_route_id_field : Optional string
travel_mode : Optional string
stop_service_time : Optional float
max_route_time : Optional float
include_route_layers : Optional bool
output_name : Optional string
context : Optional string
- gis :
Optional, the GIS on which this tool runs. If not specified, the active GIS is used.
- estimate :
Optional Boolean. If True, the number of credits to run the operation will be returned.
- dict with the following keys:
“routes_layer” : layer (FeatureCollection) “assigned_stops_layer” : layer (FeatureCollection) “unassigned_stops_layer” : layer (FeatureCollection)