Business Point Reports (Business Analyst)

许可等级:BasicStandardAdvanced

摘要

This report shows a listing of businesses or shopping centers in a given area.

用法

语法

BusinessReports_ba (BusinessLayer, ReportTemplates, OutputFolder, {InputFeatureLayer}, {IDField}, {StoreIDField}, {RingIDField}, {UseSelectedFeatures}, {InsertMap}, {ReportsOutputReportType}, {TERRITORY_LEVEL}, {SummarizationOptions}, {StoreNameField}, {ReportFormats})
参数说明数据类型
BusinessLayer

The point layer that contains the business or shopping center points you wish to report on.

Feature Layer
ReportTemplates
[ReportTemplates,...]

Select from a list of standard business point report templates.

String
OutputFolder

The report is created in this output directory.

Folder
InputFeatureLayer
(可选)

This layer defines the mapping extent at which the Business Points Report will run. Only points that intersect this boundary will be included in the report.

Feature Layer
IDField
(可选)

The area ID associated with each trade area. For trade areas derived from Business Analyst, this will be a combination of the store ID and the ring ID.

Field
StoreIDField
(可选)

The store ID associated with each trade area.

Field
RingIDField
(可选)

The ring ID associated with each trade area.

Field
UseSelectedFeatures
(可选)

Uses selected points to summarize to the boundary layer.

  • TRUEUses selected points to summarize to the boundary layer.
  • FALSESummarizes the points to the boundary layer on all features. This is the default.
Boolean
InsertMap
(可选)

Inserts a map from ArcMap into an applicable report template.

  • TRUEInserts the map image.
  • FALSEDoes not insert the map image.
Boolean
ReportsOutputReportType
(可选)

This option allows a user to select between generating individual reports per boundary or stitching all reports into a single report file.

  • REPORT_PER_BOUNDARYGenerates an individual report for each boundary in the boundary layer.
  • SINGLE_REPORTStitches all reports for all boundaries into a single report.
String
TERRITORY_LEVEL
(可选)

Enter the scripting explanation here.

SummarizationOptions
(可选)

This option determines how the data will be displayed on a report

  • INDIVIDUAL_FEATURESGenerates a report for each trade area boundary.
  • WHOLE_LAYEREach variable in the report is summarized for all the boundaries.
  • BOTH_FEATURES_AND_LAYERGenerates a report for each trade area boundary, and at the end of the report, each variable in the report is summarized for all the boundaries.
String
StoreNameField
(可选)

The store name associated with each trade area.

Field
ReportFormats
(可选)

Select the desired report output format.

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

代码实例

BusinessReports Example (Stand-alone Script)
# Create the geoprocessor object
# Description: Summarizes business points in a customer derived trade area and outputs these results in a preformatted report.
# 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 Business Points Report tool

  Business = "C:/Projects/Default Project/Custom Data/Business.shp"
  ReportOut = "C:/My Output Data/Projects/Reports"
  BoundaryInput = "C:/My Output Data/Projects/Default Project/TradeAreas/Customer_Derived_TradeAreas.shp"   
  AreaId = "AREA_ID"
  StoreID = "STORE_ID"
  RingID = "RING"
   
	   	   
# Create the Business Points Report
  arcpy.BusinessReports_ba(Business, "Business Summary Report", ReportOut, BoundaryInput, AreaId, StoreID, RingID)
 
# 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