Target Map (Business Analyst)
Summary
Thematically shades selected segments a single color in a map to help you determine where your target segments are located.
Illustration
Usage
-
To best determine what segments to include in the target map, you should analyze the output from the Customer Tapestry Profile Report.
-
The segmentation layer should be set to the block group layer. There must be a unique assignment of households for a unit of geography for this map to be created.
-
The segmentation base can be generated using total adult population or total households.
-
Total adult population includes individuals 18 years old or older.
-
You may want to create a Game Plan Chart to help guide you in the selection of your segments.
-
This tool creates a binary shaded map. All block groups shaded red are in the Selected Segments (Target) you define.
-
You can change the default colors used in the Target Map by editing the Business Analyst Styles document. You can edit these colors in ArcMap's Style Manager. To open the Style Manager, click Tools > Styles > Style Manager.
Syntax
Parameter | Explanation | Data Type |
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 (Optional) |
Defines whether to generate a Target Map report.
| Boolean |
CreateFeatureClass (Optional) |
Defines whether to generate an output feature class for the Target Map.
| Boolean |
OutputFeatureClass |
The new feature class that will contain the Target map output. | Feature Class |
Code Sample
# 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)