ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • 帮助
  • Sign Out
ArcGIS Desktop

ArcGIS Online

专为贵组织打造的制图平台

ArcGIS Desktop

全面的专业性 GIS

ArcGIS Enterprise

面向企业的 GIS

ArcGIS Developers

用于构建位置感知应用程序的工具

ArcGIS Solutions

适用于行业的免费模板地图和应用程序

ArcGIS Marketplace

获取适用于组织的应用程序和数据

  • 文档
  • 支持
Esri
  • 登录
user
  • 我的个人资料
  • 登出

ArcMap

  • 主页
  • 入门
  • 地图
  • 分析
  • 管理数据
  • 工具
  • 扩展模块

Create Profile by Table Geocoding

获得 Business Analyst 许可后可用。

  • 描述
  • 使用方法
  • 语法
  • 代码示例
  • 环境
  • 许可信息

描述

Creates a profile from a table of address records.

Learn more about how Create Profile By Table Geocoding (Business Analyst) works

使用方法

  • Input tables must be in a format that can be opened in ArcGIS.

  • Only matched address records will be included in the output segmentation profile.

语法

arcpy.ba.CreateSegProfileByTableGeocoding(Dataset, MatchFields, SegmentationBase, ProfileFolder, {InputVolumeInfoFieldName}, {InputProfileComments}, {CreateCustomerLayerForSegmentationProfile}, {GeocodedCustomerFeatureClass}, {UseZip4Locator})
参数说明数据类型
Dataset

Table containing the address records.

Table
MatchFields

Input address fields for appending segmentation codes.

Field Info
SegmentationBase

Population or household base for the profile being created.

String
ProfileFolder

The output profile is created in this folder. The folder name corresponds to the name of the profile used in Business Analyst. For example, a profile created in the folder C:\My Output Data\Projects\Default Project\Segmentation\Profiles\NewProfile would be referred to as NewProfile in Business Analyst.

Folder
InputVolumeInfoFieldName
(可选)

Field containing volume information with which the profile can optionally be created. For example, you can create a profile using sales for each customer.

Field
InputProfileComments
(可选)

Optional comments for profile. These comments can include information such as author, source, date, and vintage.

String
CreateCustomerLayerForSegmentationProfile
(可选)

Creates a profile for each separate polygon in your shapefile.

  • CREATE_WITH_ID —Will create a customer layer.
  • CREATE_NO_ID —Will only create a customer profile.
Boolean
GeocodedCustomerFeatureClass
(可选)

Feature class containing geocoded customers.

Feature Class
UseZip4Locator
(可选)

Use the ZIP+4 database to geocode.

  • Checked—Will use the ZIP+4 Locator.
  • Unchecked—Will not use the ZIP+4 Locator.
Boolean

代码示例

CreateProfileByTableGeocoding example (stand-alone script)

# Name: CreateProfileByTableGeocoding.py
# Description: Creates a segmentation profile by geocoding address fields from a table in the San Francisco area.
# Author: Esri

# Import system modules
import arcview
import arcpy

arcpy.ImportToolbox(r"C:\Program Files (x86)\ArcGIS\Desktop10.8\Business Analyst\ArcToolbox\Toolboxes\Business Analyst Tools.tbx")
 
try:
# Acquire extension license 
  arcpy.CheckOutExtension("Business") 
 
# Define input and output parameters for the Create Profile by Table Geocoding tool
  Dataset = "C:/ArcGIS/Business Analyst/US_2022/Datasets/Tutorial/sf_custs.dbf"
  MatchFields = "Addr ADDRESS VISIBLE;Addr2 <none> VISIBLE;City <none> VISIBLE;State <none> VISIBLE;ZIP ZIP VISIBLE;ZIPExt <none> VISIBLE;Firm NAME VISIBLE"
  SegmentationBase = "Total Adult Population"
  ProfileFolder = "C:/temp/NewProfile.xml"
 
# Create Profile by Table Geocoding
  arcpy.CreateProfileByTableGeocoding_ba(Dataset, MatchFields, SegmentationBase, ProfileFolder)
 
# Release extension license 
arcpy.CheckInExtension("Business")

环境

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

许可信息

  • Basic: 需要 Business Analyst
  • Standard: 需要 Business Analyst
  • Advanced: 需要 Business Analyst

相关主题

  • An overview of the Segmentation Profiles toolset

ArcGIS Desktop

  • 主页
  • 文档
  • 支持

ArcGIS

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS
  • ArcGIS Developer
  • ArcGIS Solutions
  • ArcGIS Marketplace

关于 Esri

  • 关于我们
  • 招贤纳士
  • Esri 博客
  • 用户大会
  • 开发者峰会
Esri
分享您的想法。
Copyright © 2022 Esri. | 隐私政策 | 法律声明