概要
テーブルに格納されている座標からポイント フィーチャクラスを作成します。
使用法
出力ポイント フィーチャクラスには、入力テーブルのすべてのフィールドが含まれます。
構文
arcpy.defense.CoordinateTableToPoint(in_table, out_feature_class, x_or_lon_field, in_coordinate_format, {y_or_lat_field}, {coordinate_system})
パラメーター | 説明 | データ タイプ |
in_table | 元の座標を含むテーブル。 | Table View |
out_feature_class | 出力ポイント フィーチャを格納するフィーチャクラス。 | Feature Class |
x_or_lon_field | X または経度の座標を含む入力テーブル内のフィールド。 | Field |
in_coordinate_format | 入力テーブル座標の形式を指定します。
| String |
y_or_lat_field (オプション) | Y または緯度の座標を含む入力テーブル内のフィールド。 y_or_lat_field パラメーターは、in_coordinate_format パラメーターが DD_2、DDM_2、または DMS_2 に設定された場合に使用されます。 | Field |
coordinate_system (オプション) | 出力フィーチャクラスの空間参照。デフォルトは GCS_WGS_1984 です。 | Spatial Reference |
コードのサンプル
次の Python ウィンドウ スクリプトは、CoordinateTableToPoint 関数の使用方法を示しています。
import arcpy
arcpy.env.workspace = r"C:/Data.gdb"
arcpy.CoordinateTableToPoint_defense(r"C:/CSV/TableToPoint.csv",
"Out_Point",
"x",
"DD_2",
"y")
次の例は、サンプル ワークフロー スクリプトで CoordinateTableToPoint 関数を使用する方法を示しています。
# Description: Create points from tabular data and create buffers around them.
# Import system modules
import arcpy
# Set environment settings
arcpy.env.workspace = r"C:/Data.gdb"
arcpy.env.overwriteOutput = True
# Create points
input_table = r"C:/CSV/TableToPoint.csv"
result_point = "Output_Point"
arcpy.CoordinateTableToPoint_defense(input_table, result_point, "x", "DD_2", "y")
# Create buffers
result_buffer = "Output_Buffer"
arcpy.Buffer_analysis(result_point, result_buffer, "50 Meters")
ライセンス情報
- Basic: はい
- Standard: はい
- Advanced: はい