Customer Geographic Summary Report (Business Analyst)

概要

Lists standard geographic distributions for your customer layer.

使用法

構文

GeographicCustomerSummaryReport_ba (CustomerLayer, ReportFile, {UseSelectedFeatures}, ReportTitle, {ReportFormats})
パラメータ説明データ タイプ
CustomerLayer

The input feature class containing the points for the customer distribution. In most cases, this will be a Business Analyst customer layer.

Input
ReportFile

Outputs the report to a directory for retrieval later.

File
UseSelectedFeatures
(オプション)

Generates a report on selected features of the customer layer.

  • True —Generates the Customer Geographic Summary Report on selected features.
  • False —Generates the Customer Geographic Summary Report on all features. This is the default.
Boolean
ReportTitle

Name and title for the report.

String
ReportFormats
(オプション)

Select the desired report output format.

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

コード サンプル

GeographicSummaryReport Example (Stand-alone Script)
# Name: GeographicSummaryReport.py
# Description: Summarizes the geographic features associated with a sample customer dataset in San Francisco.
# 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 Customer Geographic Summary Report tool
Cust = "C:/temp/sf_cust.shp"
OutputFile = "C:/temp/CustGeoRpt.rpt"
Title = "Customer Summary Report"
 
# Create customer geographic summary reports
arcpy.GeographicCustomerSummaryReport_ba(Cust, OutputFile, "false", Title)
 
# Release extension license 
arcpy.CheckInExtension("Business") 
 
except:
print arcpy.GetMessages(2)

環境

このツールは、ジオプロセシング環境では使用できません

関連項目

ライセンス情報

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

10/4/2010