本文简要介绍 python 语言中 arcgis.geometry.trim_extend
的用法。
用法:
arcgis.geometry.trim_extend(spatial_ref, polylines, trim_extend_to, extend_how=0, gis=None, future=False)
返回:
Polyline
对象数组或GeometryJob
对象。如果future = True
,则结果是Future
对象。调用result()
获取响应。
trim_extend
函数在Geometry
服务资源上执行。此函数使用用户指定的引导折线修剪或扩展输入数组中指定的每个Polyline
。注意:
修剪特征时,定向切割线左侧的部分将保留在输出中,而其他部分将被丢弃。如果相应的输入折线既没有被剪切也没有被延伸,则空的
Polyline
将添加到输出数组中。Keys
Description
polylines
要修剪或扩展的
Polyline
对象数组trim_extend_to
Polyline
用作修剪或延伸输入多段线的指南。extend_how
与 trimExtend 函数一起使用的标志。
0
- 默认情况下,扩展会考虑路径的两端。旧的末端仍然存在,新的点被添加到扩展的末端。新点具有从相邻现有段外推的属性。1
- 如果在末端执行扩展,请将终点重新定位到新位置,而不是离开旧点并在新位置添加新点。2
- 如果在结束时执行扩展,请勿将 end-segment 的属性外推到新点。相反,使其属性与当前端相同。与esriNoAttributes
不兼容。4
- 如果在结束时执行扩展,请勿将 end-segment 的属性外推到新点。相反,将其属性设为空。与 esriKeepAttributes 不兼容。8
- 不要扩展任何路径的 ‘from’ 端。16
- 不要扩展任何路径的 ‘to’ 端。spatial_ref
输入几何图形的
SpatialReference
众所周知的 ID 或 JSON 对象future
可选布尔值。如果为 True,则将返回 future 对象,并且进程不会等待任务完成。默认为False,表示等待结果。
>>> polylines_arr = trim_extends(polylines = [polyline1,polyline2, ...], trim_extend_to = polyline_trimmer extend_how = 2, spatial_ref = "wkid", future = False) >>> polyline_arr [polyline1, polyline2,...]
相关用法
- Python ArcGIS train_classifier用法及代码示例
- Python ArcGIS train_random_trees_regression_model用法及代码示例
- Python ArcGIS trace_downstream用法及代码示例
- Python arcgis.learn.train_model用法及代码示例
- Python ArcGIS tanh用法及代码示例
- Python ArcGIS to_geo_coordinate_string用法及代码示例
- Python ArcGIS tan用法及代码示例
- Python ArcGIS threshold用法及代码示例
- Python ArcGIS times用法及代码示例
- Python ArcGIS power用法及代码示例
- Python ArcGIS APIKeyManager.get用法及代码示例
- Python ArcGIS KnowledgeGraph.named_object_type_delete用法及代码示例
- Python ArcGIS ContentManager.unshare_items用法及代码示例
- Python ArcGIS ImageryLayer.thumbnail用法及代码示例
- Python ArcGIS FormFieldElement用法及代码示例
- Python ArcGIS Geometry.true_centroid用法及代码示例
- Python ArcGIS Site.delete用法及代码示例
- Python ArcGIS GeoAccessor.bbox用法及代码示例
- Python arcgis.apps.hub.Initiative.update用法及代码示例
- Python ArcGIS generate_service_areas用法及代码示例
- Python ArcGIS build_overview用法及代码示例
- Python ArcGIS RunInterval用法及代码示例
- Python ArcGIS describe_dataset用法及代码示例
- Python ArcGIS acos用法及代码示例
- Python ArcGIS Item.publish用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.geometry.trim_extend。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。