摘要
创建用于模型构建器的空间参考对象。
使用空间参考类可创建用于脚本的空间参考对象。
用法
可使用已设置的坐标系、空间域和精度创建空间参考对象。要进一步修改输出空间参考的空间域和精度,可使用 XY 属性域、Z 属性域、M 属性域、XY 属性域模板和 XY 属性域增长百分比参数。
XY 属性域模板所在的坐标系不必与空间参考或空间参考模板中所指定的坐标系相同。如果两个坐标系不同,则会对范围进行投影以使其相互匹配。
如果空间参考和空间参考模板参数均已设置,则“空间参考”参数具有较高的优先级。
此工具的所有参数均为可选设置。如果未指定任何参数,空间参考将被定义为“未知”,而 XY 属性域则将采用标准默认设置。
在模型构建器中,可使用空间参考参数(如创建要素类、创建要素数据集、创建 XY 事件图层)将此工具的输出用作工具的输入。
语法
CreateSpatialReference_management ({spatial_reference}, {spatial_reference_template}, {xy_domain}, {z_domain}, {m_domain}, {template}, {expand_ratio})
参数 | 说明 | 数据类型 |
spatial_reference (可选) | 要创建的空间参考对象的名称。 | Spatial Reference |
spatial_reference_template (可选) | 要用作模板的要素类或图层,用于设置空间参考的值。 | Feature Layer; Raster Catalog Layer; Raster Dataset |
xy_domain (可选) | 允许的 x,y 坐标的坐标范围。 | Envelope |
z_domain (可选) | 允许的 z 值的坐标范围。 | String |
m_domain (可选) | 允许的 m 值的坐标范围。 | String |
template [template,...] (可选) | 可用于定义 XY 属性域的要素类或图层。 | Feature Layer |
expand_ratio (可选) | 展开 XY 属性域时使用的百分比。 | Double |
代码实例
创建空间参考示例(独立脚本)
以下独立脚本将 CreateSpatialReference 函数用作工作流的一部分,该工作流在文件中进行循环、查找所有以“ST”结尾的 shapefile、创建空间参考,并将其追加到地理数据库要素类中。
# This script reprojects a shapefile in Redlands folder
# from NAD 1983 UTM Zone 11N
# to NAD 1983 StatePlane California V FIPS 0405 (US Feet)
# import system modules
import arcpy
try:
# set the workspace environment
arcpy.env.workspace = r"C:\data\Redlands"
# create a spatial reference object to be used as output coordinate system
out_sr = arcpy.CreateSpatialReference_management("NAD 1983 StatePlane California V FIPS 0405 (US Feet)")
# use the output of CreateSpatialReference as input to Project tool
# to reproject the shapefile
arcpy.Project_management("citylimit_Project1.shp", "city_CA_FIPS0405", out_sr)
except arcpy.ExecuteError:
# print geoprocessing message
print(arcpy.GetMessages(2))
except Exception as ex:
# print the exception message
print(ex.args[0])
环境
此工具不使用任何地理处理环境