フィーチャ属性を ASCII にエクスポート(Export Feature Attribute to ASCII) (空間統計)

サマリ

フィーチャクラスの座標および属性値を、スペース、カンマ、またはセミコロン区切りの ASCII テキスト ファイルにエクスポートします。

Export Feature Attribute to ASCII tool illustration
Coordinates (X and Y) and user-specified feature attributes are written to an ASCII text file.

使用法

構文

ExportXYv_stats (Input_Feature_Class, Value_Field, Delimiter, Output_ASCII_File, Add_Field_Names_to_Output)
パラメータ説明データ タイプ
Input_Feature_Class

フィーチャ座標および属性値のエクスポート元のフィーチャクラス。

Feature Layer
Value_Field
[Value_Field,...]

ASCII テキスト ファイルにエクスポートする値を含む入力フィーチャクラス内のフィールド(複数可)。

Field
Delimiter

フィーチャ座標および属性値の出力 ASCII ファイル内での区切り方を指定します。

  • SPACEフィーチャ座標および属性値は、出力内でスペースで区切られます。
  • COMMAフィーチャ座標および属性値は、出力内でカンマで区切られます。
  • SEMI-COLONフィーチャ座標および属性値は、出力内でセミコロンで区切られます。
String
Output_ASCII_File

フィーチャ座標および属性値の格納される ASCII テキスト ファイル。

File
Add_Field_Names_to_Output
  • NO_FIELD_NAMESフィールド名が出力テキスト ファイルに書き込まれません(デフォルト)。
  • ADD_FIELD_NAMESフィールド名が出力テキスト ファイルに書き込まれます。
Boolean

コードのサンプル

ExportFeatureAttributeToASCII(フィーチャ属性を ASCII にエクスポート)の例(Python ウィンドウ)

次の Python ウィンドウ スクリプトは ExportFeatureAttributeToASCII(フィーチャ属性を ASCII にエクスポート)ツールを使用する方法を示しています。

import arcpy
arcpy.env.workspace = r"c:\data"
arcpy.ExportXYv_stats("AidsByCaCnty.shp","HEPRATE", "SPACE","aidsbycacnty.txt","ADD_FIELD_NAMES")
ExportFeatureAttributeToASCII(フィーチャ属性を ASCII にエクスポート)の例(スタンドアロン Python スクリプト)

次のスタンドアロンの Python ウィンドウ スクリプトは ExportFeatureAttributeToASCII(フィーチャ属性を ASCII にエクスポート)ツールを使用する方法を示しています。

# Export feature locations and attributes to an ASCII text file
 
# Import system modules
import arcpy
 
# Local variables...
workspace = "c:/data"
input_features = "AidsByCaCnty.shp"
export_ASCII = "aidsbycacnty.txt"
 
try:
    # Set the current workspace (to avoid having to specify the full path to the feature classes each time)
    arcpy.env.workspace = workspace
 
    # Process: Export Feature Attribute to ASCII...
    arcpy.ExportXYv_stats(input_features, "HEPRATE", "SPACE", export_ASCII, "NO_FIELD_NAMES")
 
except:
    # If an error occurred when running the tool, print out the error message.
    print arcpy.GetMessages()

環境

関連項目

ライセンス情報

ArcView: はい
ArcEditor: はい
ArcInfo: はい

7/10/2012