Mean Store Center (Business Analyst)

许可等级:BasicStandardAdvanced

摘要

Creates a centroid (new store location) in the mean geographic center of your customer points.

Learn more about how Mean Store Center works

插图

Mean Store Center example

用法

语法

MeanStoreCenter_ba (CustomerLayer, LinkField, CustomerWeightField, OutputFeatureClass, {UseSelectedFeatures}, {InNeedReportOutput}, {InputFeatureLayer}, {IDField}, {DistanceCalculateMethod}, {MeasureUnits}, {InReportTitle}, {ReportFile}, {InMakeClusters}, {InClustersCount}, {ReportFormats})
参数说明数据类型
CustomerLayer

The input feature layer. This point layer is usually a customer layer.

Feature Layer
LinkField

The store ID field in the customer layer that assigns each customer to a store location.

Field
CustomerWeightField

The numeric field used in the calculation to determine the mean store center.

Field
OutputFeatureClass

The new feature class that will contain the mean center for customer locations.

Feature Class
UseSelectedFeatures
(可选)

The features used to generate the mean centers.

  • TrueGenerates the mean store center using only the selected features.
  • FalseGenerates the mean store center using all features. This is the default.
Boolean
InNeedReportOutput
(可选)

The option to output a mean store center report.

  • CREATE_REPORTA mean store center report will be generated.
  • DONT_CREATE_REPORTA mean store center report will not be generated. This is the default.
Boolean
InputFeatureLayer
(可选)

The input feature layer containing the center points (typically store points) that will be used in calculating the distance from the mean store center.

Feature Layer
IDField
(可选)

Field used to uniquely identify each store.

Field
DistanceCalculateMethod
(可选)

The method used to calculate the distance between existing stores and the mean store center.

  • DRIVE_TIMEDriving time measured in units of time.
  • DRIVE_DISTANCEDriving distance measured in units of distance.
  • STRAIGHT_LINE_DISTANCEStraight-line distance. This is the default.
String
MeasureUnits
(可选)

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

  • Decimal Degrees
  • Feet
  • Kilometers
  • Meters
  • Miles
  • Nautical Miles
  • Yards
String
InReportTitle
(可选)

Title for the Mean Store Center report.

String
ReportFile
(可选)

The directory that the Mean Store Center report will be saved to.

Folder
InMakeClusters
(可选)

Will use a K-means algorithm to generate mean store centers based on customer file.

  • TRUEGenerates multiple mean store centers based on customer point clusters.
  • FALSEWill generate a single mean store center on customers. This is the default.
Boolean
InClustersCount
(可选)

Determines the number of clusters generated based on customer file. The default is 10.

Long
ReportFormats
[ReportFormats,...]
(可选)

Select the desired report output format

  • Simple XML
  • PDF
  • HTML
  • CSV
  • ZIP
  • XLSV
  • Stripped XLSX
String

代码实例

MeanStoreCenter Example (Stand-alone Script)
# Name: MeanStoreCenter.py
# Description: Spatially locates a new store location in the San Francisco market based on customer sales.
# Author: Esri

# Import system modules
import arcview
import arcpy

arcpy.ImportToolbox("C:\Program Files (x86)\ArcGIS\Desktop10.2\Business Analyst\ArcToolbox\Toolboxes\Business Analyst Tools.tbx")

try:
# Acquire extension license
  arcpy.CheckOutExtension("Business") 
 
# Define input and output parameters for the Mean Store Center tool
  CustPath = "C:/temp/sf_cust.shp"
  OutPath = "C:/temp/Mean_Store.shp"
  StoreId = "STORE_ID"
 
# Create Mean Store Center output file
  arcpy.MeanStoreCenter_ba(CustPath, StoreId, "SALES", OutPath)
 
# Release extension license 
  arcpy.CheckInExtension("Business")
 
except:
  print arcpy.GetMessages(2)

环境

此工具不使用任何地理处理环境

相关主题

许可信息

ArcGIS for Desktop Basic: 需要 Business Analyst
ArcGIS for Desktop Standard: 需要 Business Analyst
ArcGIS for Desktop Advanced: 需要 Business Analyst
4/27/2014