Drive Time (Business Analyst)

Lizenzstufe:BasicStandardAdvanced

Zusammenfassung

Creates a new feature class of trade areas, based on drive time or driving distance, around store point features.

Learn more about how Drive Time works

Bild

Drive time results

Verwendung

Syntax

DriveTime_ba (InputFeatureLayer, IDField, All_Or_Single_Or_Selected, Radius, {MeasureUnits}, OutputFeatureClass, {ByID_Or_ByName}, {Single_Site}, {Donut}, {BorderShape}, {RemoveOverlap}, UseSMDT, {ShowTraverceStreets}, {JoinStreetAttr}, {OutTraverseFeatureClass}, Solver_Id, {BarrierFeatureClasses})
ParameterErläuterungDatentyp
InputFeatureLayer

The input feature class containing center points for the drive time trade areas. In most cases, this will be a Business Analyst store layer.

Feature Layer
IDField

Unique ID field in the ring center (store) layer.

Field
All_Or_Single_Or_Selected

Creates drive time trade areas for points in the input feature layer.

  • All —Creates drive time trade areas for all points.
  • Single —Creates drive time trade areas for a single point.
  • Selected —Creates drive time trade areas for all selected points in ArcMap.
String
Radius
[Radius,...]

The distances, in ascending size, used to create drive time trade areas around the input features.

Double
MeasureUnits
(optional)

The units used with the distance values. By default, the units defined in the Business Analyst preferences will be selected.

  • Minutes —Missing Value
  • Decimal Degrees —Missing Value
  • Feet —Missing Value
  • Kilometers —Missing Value
  • Meters —Missing Value
  • Miles —Missing Value
  • Nautical Miles —Missing Value
  • Yards —Missing Value
String
OutputFeatureClass

The feature class that will contain the drive-time features.

Feature Class
ByID_Or_ByName
(optional)

Field used to select a single point.

  • ID —Selects a single point using the store ID field.
  • Name —Selects a single point using the store name field.
String
Single_Site
(optional)

ID or name of store to be used as the single point.

String
Donut
(optional)

Creates nonoverlapping concentric rings, or donut bands.

  • True —Creates output polygons that are donut rings. For example, if three radii (1, 2, and 3 miles) are entered, three output bands would be created with 0–1-, 1–3-, and 3–5-mile rings.
  • False —Creates concentric rings. This is the default.
Boolean
BorderShape
(optional)

Creates a detailed border, ignoring areas that cannot be driven to.

  • True —Generates a detailed border for the drive time.
  • False —Does not generate a detailed border for the drive time.
Boolean
RemoveOverlap
(optional)

Creates overlapping concentric rings or removes overlap.

  • TRUE —Uses Thiessen polygons to remove overlap between output ring polygons.
  • FALSE — Output ring features are created with overlap.
Boolean
UseSMDT

Generates drive times based on the Street Map algorithm. These drive times will be generated more quickly in large areas as compared to the default Network Analyst drive times.

  • True —Create drive times based on the Street Map algorithm.
  • False —Creates drive times based on the Network Analyst algorithm.
Boolean
ShowTraverceStreets
(optional)

The feature class that contains all the streets contained by the drive-time polygon derived from the streets feature class.

  • True —Displays traversed streets as a new layer.
  • False —Does not display traversed streets as a new layer.
Boolean
JoinStreetAttr
(optional)

Joins the attribute field from the streets layer to the new drive time traversed streets that will contain the traversed drive-time network for each drive time trade area.

  • True —Joins attribute data to the traversed street layer.
  • False —Does not join attribute data to the traversed street layer.
Boolean
OutTraverseFeatureClass
(optional)

The feature class that will contain the traversed streets.

Feature Class
Solver_Id

The method to calculate drive time or drive distance.

  • Standard Drive Times — Creates drive time polygons based on Network Analyst. This option is best utilized for large numbers of input points and creates more generalized output than the Detailed option.
  • Detailed Drive Times — Creates drive time polygons based on Network Analyst. This option is best utilized for smaller numbers of input points and creates more detailed, processing intensive output.
  • ArcGIS Online API —Creates drive time polygons based utilizing the ArcGIS Online API.
String
BarrierFeatureClasses
[BarrierFeatureClasses,...]
(optional)

Allows a user to place point, line, or polygon barriers when using drive time or drive distance algorithms to calculate distances.

Feature Layer

Codebeispiel

DriveTime Example (Stand-alone Script)
# Name: DriveTime.py
# Description: Generates a 1, 3, and 5 mile drive time in minutes around a store site in San Francisco.
# Author: Esri

# Import system modules
import arcview
import arcpy

arcpy.AddToolbox("C:\Program Files (x86)\ArcGIS\Desktop10.2\Business Analyst\ArcToolbox\Toolboxes\Business Analyst Tools.tbx")
 
try:
# Acquire extension license 
  arcpy.CheckOutExtension("Business")
  arcpy.CheckOutExtension("Network") 
 
# Define input and output parameters for the Drive Time tool
  StorePath = "C:/temp/sf_store.shp"
  IdFld = "STORE_ID"
  OutPath = "C:/temp/Drivetime.shp"
 
# Create drive time based trade areas
  arcpy.DriveTime_ba(StorePath, IdFld, "ALL", "1;3;5", "Minutes", OutPath)
 
# Release extension license 
  arcpy.CheckInExtension("Business") 
  arcpy.CheckInExtension("Network") 
 
except:
  print arcpy.GetMessages(2)

Umgebung

Dieses Werkzeug verwendet keine Geoverarbeitungsumgebungen.

Verwandte Themen

Lizenzierungsinformationen

ArcGIS for Desktop Basic: Erfordert Business Analyst
ArcGIS for Desktop Standard: Erfordert Business Analyst
ArcGIS for Desktop Advanced: Erfordert Business Analyst
4/26/2014