住所から店舗レイヤを作成(Create a Store Layer with Address Data) (Business Analyst)

ライセンス レベル:BasicStandardAdvanced

サマリ

このツールは、住所情報に基づいて新規店舗レイヤ(フィーチャクラス)を作成します。

使用法

構文

CreateStoreWithAddressData_ba (Locator, AddressesCollection, OutputFeatureClass, {UsePictureSymbol}, {Image Path}, {PictureSymbolSize})
パラメータ説明データ タイプ
Locator

住所のマッチングに使用される住所ロケータ。

Address Locator
AddressesCollection

ジオコーディングされる住所。

String
OutputFeatureClass

店舗フィーチャが含まれるフィーチャクラス。

Feature Class
UsePictureSymbol
(オプション)

ポイント フィーチャクラスにカスタムの店舗シンボルを挿入します。

  • TRUEカスタムのシンボルを挿入します。
  • FALSEカスタムのシンボルを挿入しません。
Boolean
Image Path
(オプション)

カスタムの店舗シンボルを格納しているファイルの場所。

File
PictureSymbolSize
(オプション)

店舗ポイントの格納先となるフィーチャクラス。

Long

コードのサンプル

CreateStoreWithAddressData(住所から店舗レイヤを作成)の例(スタンドアロン スクリプト)
# Name: Creates a geocoded store layer based on a single address in Redlands, CA.
# 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")
 
# Defines the parameters for the Create a Store Layer with Address Data tool
  OutFC= "C:/temp/sf_stores.shp"
  Locator = "C:/ArcGIS/Business Analyst/US_2013/Data/USA Geocoding Service/Geocoding Data/USA Geocoding Service.loc"
  AddressCol = "Addr:380 New York St|City:Redlands|State:CA"
 
# Generate Store layers with address data
  arcpy.CreateStoreWithAddressData_ba(Locator, AddressCol, OutFC)
 
# 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