Подпись | Описание | Тип данных |
Input Features
| The input polygon feature layer. | Feature Layer |
Output Feature Class
| The output feature class containing the drive time polygons. | Feature Class |
Distance Type
| The method of travel used to create the output polygons. | String |
Distance Units
(Дополнительный) | The distance units to be used with the threshold values. | String |
Store Layer
(Дополнительный) | A point layer that will be used as the starting point for creating network service areas. | Feature Layer |
Store ID Field
(Дополнительный) | The ID that uniquely identifies each Store Layer point. | Field |
Associated Store ID Field
(Дополнительный) | The ID that uniquely identifies each Input Features point. | Field |
Iterations Limit
(Дополнительный) | The maximum number of drive times that can be used to find the optimal threshold limit. | Long |
Minimum Step
(Дополнительный) | The minimum increment distance or time—for example, 1 mile or 1 min, used between iterations to expand until the threshold is reached. | Double |
Threshold Percent Difference
(Дополнительный) | The maximum difference between the target value and threshold value when determining the threshold drive time—for example, 5%. The default value is 5. | Double |
Travel Direction
(Дополнительный) | Specifies the direction of travel for output polygon creation.
| String |
Time of Day
(Дополнительный) | The time and date that will be used when calculating distance. | Date |
Time Zone
(Дополнительный) | Specifies the time zone that will be used for the Time of Day parameter.
| String |
Search Tolerance
(Дополнительный) | The maximum distance that input points can be from the network. The default value is 5000 meters. | Linear Unit |
Polygon Detail
(Дополнительный) | Specifies the level of detail that will be used for the output drive time polygons.
| String |
Доступно с лицензией Business Analyst.
Краткая информация
Creates trade areas that approximate the size, shape, and area of existing polygons using available routes from the selected distance type.
Использование
The Output Feature Class attribute table contains a field that lists the distance or travel time of each polygon from centroid to boundary.
If the Store Layer parameter is specified, its locations will be used as the starting point for creating network service areas, instead of the input centroids.
The Iterations Limit parameter allows you to reduce credit consumption for online data by restricting the number of times networks can be traversed. A low Iterations Limit value may impact how closely the drive time trade areas align with the input polygons.
Параметры
arcpy.ba.GenerateApproximateDriveTimes(in_features, out_feature_class, distance_type, {units}, {in_stores_layer}, {store_id_field}, {link_field}, {iterations_limit}, {minimum_step}, {target_percent_diff}, {travel_direction}, {time_of_day}, {time_zone}, {search_tolerance}, {polygon_detail})
Имя | Описание | Тип данных |
in_features | The input polygon feature layer. | Feature Layer |
out_feature_class | The output feature class containing the drive time polygons. | Feature Class |
distance_type | The method of travel used to create the output polygons. | String |
units (Дополнительный) | The distance units to be used with the threshold values. | String |
in_stores_layer (Дополнительный) | A point layer that will be used as the starting point for creating network service areas. | Feature Layer |
store_id_field (Дополнительный) | The ID that uniquely identifies each in_stores_layer point. | Field |
link_field (Дополнительный) | The ID that uniquely identifies each in_features point. | Field |
iterations_limit (Дополнительный) | The maximum number of drive times that can be used to find the optimal threshold limit. | Long |
minimum_step (Дополнительный) | The minimum increment distance or time—for example, 1 mile or 1 min, used between iterations to expand until the threshold is reached. | Double |
target_percent_diff (Дополнительный) | The maximum difference between the target value and threshold value when determining the threshold drive time—for example, 5%. The default value is 5. | Double |
travel_direction (Дополнительный) | Specifies the direction of travel for output polygon creation.
| String |
time_of_day (Дополнительный) | The time and date that will be used when calculating distance. | Date |
time_zone (Дополнительный) | Specifies the time zone that will be used for the time_of_day parameter.
| String |
search_tolerance (Дополнительный) | The maximum distance that input points can be from the network. The default value is 5000 meters. | Linear Unit |
polygon_detail (Дополнительный) | Specifies the level of detail that will be used for the output drive time polygons.
| String |
Пример кода
The following Python window script demonstrates how to use the GenerateApproximateDriveTimes function.
import arcpy
arcpy.ba.GenerateApproximateDriveTimes("SF_TradeArea",r"C:\Project1.gdb\SF_Stores_GenerateApproximateDriveTimes", "Driving Time", "MINUTES",r"C:\Project1.gdb\sf_stores_Geocoded", "INPUT_AREA_ID", "STORES_AREA_ID", 10, None, 5, "TOWARD_STORES", None, "TIME_ZONE_AT_LOCATION", None, "STANDARD")
Информация о лицензиях
- Basic: Обязательно Business Analyst, Дополнительный модуль ArcGIS Network Analyst
- Standard: Обязательно Business Analyst, Дополнительный модуль ArcGIS Network Analyst
- Advanced: Обязательно Business Analyst, Дополнительный модуль ArcGIS Network Analyst