Customer Prospecting By Demographic Data (Business Analyst)

Уровень лицензии:BasicStandardAdvanced

Краткая информация

Searches for areas that contain a specific type of demographic attribute.

Learn more about how Customer Prospecting By Demographic Data works

Рисунок

Customer Prospecting

Использование

Синтаксис

DemoCustomerProspecting_ba (InputBoundaryLayer, InputGeographyLevel, OutputFeatureClass, {WayToDefineDemoQuery}, {DMQFile}, {DemographicQueryWhereClause})
ПараметрОбъяснениеТип данных
InputBoundaryLayer

The input feature layer that determines the extent at which the analysis will query and return results from the geography level layer.

Feature Layer
InputGeographyLevel

The input feature class that contains the data to be used in the demographic query.

Feature Layer
OutputFeatureClass

The feature class that will contain the customer profile features.

Feature Layer
WayToDefineDemoQuery
(дополнительно)

The parameters to be queried against the geography level.

  • USE_DMQ_FILEAllows you to point to an existing DMQ file.
  • EDIT_QUERY_IN_PLACEAllows you to manually create your own DMQ file in the Demographic Query WHERE Clause dialog box. This is the default.
Boolean
DMQFile
(дополнительно)

The definition input file generated in customer prospecting that sets the parameters to filter the geography level.

File
DemographicQueryWhereClause
(дополнительно)

Allows you to manually enter the field statistics for the demographic query.

String

Пример кода

DemoCustomerProspecting Example (Stand-alone Script)
# Name: DemoCustomerProspecting.py
# Description: Imports pre-generated customer profile (*.dmq file) to locate block groups that meet the criteria set in that profile.
# 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 the parameters for the Customer Prospecting by Demographic Data tool
  Extent = "C:/temp/Boundary.shp"
  GeoLevel = "C:/ArcGIS/Business Analyst/US_2013/Data/BDS/esri_bg.bds"
  OutputFile= "C:/temp/Demo_Prospect.shp"
  DmqFile= "C:/temp/DMQ_output.dmq"
 
# Create Customer Prospecting output file
  arcpy.DemoCustomerProspecting_ba(Extent, GeoLevel, OutputFile, "USE_DMQ_FILE", DmqFile)
 
# 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