Target Map (Business Analyst)

汇总

Thematically shades selected segments a single color in a map to help you determine where your target segments are located.

Learn more about how Target Map (Business Analyst) works

图示

Target Map example

用法

语法

TargetMap_ba (SegmentationBase, SegmentationClusters, SegmentationLayer, SegmentationAnalysisResultFolder, {CreateReport}, {CreateFeatureClass}, OutputFeatureClass)
参数说明数据类型
SegmentationBase

The segmentation base can be generated using total adult population or total households.

String
SegmentationClusters
[SegmentationCluster;SegmentationCluster...,...]

One or more segments used to define your summarized target penetration.

String
SegmentationLayer

The geographic layer containing the segmentation data. Typically, this should be set to the block group layer or other layers with a unique segmentation assignment.

String
SegmentationAnalysisResultFolder

The output file directory.

Missing value
CreateReport
(可选)

Defines whether to generate a Target Map report.

  • CREATE_REPORTGenerates a Target Map report.
  • DONT_CREATE_REPORTDoes not generate a Target Map report. This is the default.
Boolean
CreateFeatureClass
(可选)

Defines whether to generate an output feature class for the Target Map.

  • CREATE_OUT_FEATURECLASSGenerates an output feature class for the Target Map.
  • DONT_CREATE_OUT_FEATURECLASSDoes not generate an output feature class for the Target Map. This is the default.
Boolean
OutputFeatureClass

The new feature class that will contain the Target map output.

Feature Class

代码示例

TargetMap Example (Stand-alone Script)
# Name: TargetMap.py
# Description: Creates a report based on selected taptestry segments. 
# Author: ESRI

# Import system modules
import arcview
import arcpy

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

try:
# Acquire extension license 
arcpy.CheckOutExtension("Business") 
 
# Define input and output parameters for the Target Map tool
OutPath = "C:/temp/Output_Segmentation"
SegLayer = "C:/Program Files/ArcGIS/Desktop10.0/Business Analyst/Data/BDS/esri_bg.bds"
 
# Create Target Map
arcpy.TargetMap_ba("Total Adult Population", "Top Rung;Boomburbs", SegLayer, OutPath, "CREATE_REPORT", "DONT_CREATE_OUT_FEATURECLASS")
 
# Release extension license 
arcpy.CheckInExtension("Business") 
 
except:
print arcpy.GetMessages(2)

环境

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

相关主题

许可信息

ArcView: 需要 Business Analyst
ArcEditor: 需要 Business Analyst
ArcInfo: 需要 Business Analyst

10/4/2010