XY 座標値を使用して顧客を設定(Setup Customers Using XY Data) (Business Analyst)

ライセンス レベル:BasicStandardAdvanced

サマリ

X、Y(緯度と経度)座標データを顧客レイヤに変換します。

使用法

構文

SetupCustomersByXYData_ba (Table, LatitudeField, LongitudeField, NameField, LinkField, OutputFeatureClass)
パラメータ説明データ タイプ
Table

顧客レイヤを設定するために使用する入力テーブル。

Table View
LatitudeField

緯度の座標(Y フィールド)を格納するフィールド。

Field
LongitudeField

経度の座標(X フィールド)を格納するフィールド。

Field
NameField

顧客データのユニークな ID(一般的には顧客名)。

Field
LinkField

顧客ファイルと店舗ファイルをリンクするユニークな ID。

Field
OutputFeatureClass

顧客フィーチャが含まれるフィーチャクラス。

Feature Class

コードのサンプル

SetupCustomersByXYData(XY 座標値を使用した顧客の設定)の例(スタンドアロン スクリプト)
# Name: SetupCustomersByXYData.py
# Description: Creates a customer layer from latitude longitude coordinates. 
# 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 the parameters for the Setup Customers Using XY Data tool
  CustPath = "C:/temp/sf_cust.dbf"
  NewFC = "C:/temp/sf_customer.shp"
  Lat = "Latitude"
  Long = "Longitude"
  CustName = "NAME"
  StoreId = "STORE_ID"
 
# Sets up a new customer layer based on XY data
  arcpy.SetupCustomersByXYData_ba(CustPath, Lat, Long, CustName, StoreId, NewFC)
 
# 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
5/20/2014