坐标表转点 (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

指定输入表坐标的格式。

  • DD_1坐标将采用存储在单个字段中的十进制度坐标对格式,其中坐标以空格、逗号或斜线分隔。
  • DD_2坐标将采用存储在两个表字段中的十进制度坐标对格式。这是默认设置。
  • DDM_1坐标将采用存储在单个表字段中的度和十进制分坐标对格式,其中坐标以空格、逗号或斜线分隔。
  • DDM_2坐标将采用存储在两个表字段中的度和十进制分坐标对格式。
  • DMS_1坐标将采用存储在单个表字段中的度、分和秒坐标对格式,其中坐标以空格、逗号或斜线分隔。
  • DMS_2坐标将采用存储在两个表字段中的度、分和秒坐标对格式。
  • GARS坐标将采用全球区域参考系格式。
  • GEOREF 坐标将采用世界地理参考系格式。
  • UTM_BANDS坐标将采用通用横轴墨卡托坐标带格式。
  • UTM_ZONES坐标将采用通用横轴墨卡托坐标区域格式。
  • USNG坐标将采用美国国家网格格式。
  • MGRS坐标将采用军事格网参考系格式。
String
y_or_lat_field
(可选)

输入表中包含 y 或纬度坐标的字段。

in_coordinate_format 参数设置为 DD_2DDM_2DMS_2 时,将使用 y_or_lat_field 参数。

Field
coordinate_system
(可选)

输出要素类的空间参考。默认值为 GCS_WGS_1984。

Spatial Reference

代码示例

CoordinateTableToPoint 示例 1(Python 窗口)

以下 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 示例 2(独立脚本)

以下示例将在示例工作流脚本中使用 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: 是

相关主题