本文簡要介紹 python 語言中 arcgis.raster.ImageryLayer.to_features
的用法。
用法:
to_features(field='Value', output_type='Polygon', simplify=True, output_name=None, create_multipart_features=False, max_vertices_per_feature=None, context=None, *, gis=None, future=False, **kwargs)
返回:
FeatureLayer
項目。
to_features
方法使用 Raster Analytics 將此柵格轉換為指定類型的持久化FeatureLayer
。注意:
分布式柵格分析用於通過在柵格範圍內以源分辨率應用柵格函數並執行柵格到要素的轉換來生成新的要素圖層。
Parameter
Description
field
可選字符串 - 指定將用於轉換的值的字段。它可以是任何整數或字符串字段。
僅當輸出到點數據集時,才能使用包含浮點值的字段。
默認為“Value”
output_type
可選字符串。
以下之一:['點','線','多邊形']
simplify
可選布爾值,此選項指定應如何平滑特征。它僅適用於線和多邊形輸出。
沒錯,那麽這些特征將被平滑。這是默認設置。
如果為 False,則要素將完全遵循柵格數據集的像元邊界。
output_name
可選的。如果未提供,則由該方法創建要素圖層並用作輸出
您可以從 GIS 中傳入現有的要素服務項目來使用它。
或者,您可以傳入應通過此方法創建的輸出要素服務的名稱,以用作工具的輸出。
如果該名稱的服務已經存在,則會引發 RuntimeError
create_multipart_features
可選的布爾值。指定輸出麵是由single-part 還是由多部分要素組成。
True:指定將基於具有相同值的多邊形創建多部分要素。
False:指定將為每個多邊形創建單獨的要素。這是默認設置。
max_vertices_per_feature
可選的整數。用於將多邊形細分為更小的多邊形的頂點限製。
context
context 包含影響任務執行的其他設置。
context 參數覆蓋通過arcgis.env 參數設置的值
此函數具有以下設置:
Extent (extent): A bounding box that defines the analysis area.
- Example:
{“extent”: {“xmin”: -122.68, “ymin”: 45.53, “xmax”: -122.45, “ymax”: 45.6, “spatialReference”: {“wkid”: 4326}}}
Output Spatial Reference (outSR): The output raster will be projected into the output spatial reference.
- Example:
{“outSR”: {spatial reference}}
gis
可選的 GIS 對象。如果未指定,則使用當前活動的連接。
future
可選布爾值。如果為 True,則將返回 future 對象,並且進程不會等待任務完成。默認為False,表示等待結果。
例子:
# Usage Example feature_layer = img_lyr.to_features(output_type="Polygon", simplify = False, output_name="new_feature_layer", create_multipart_features = True, )
相關用法
- Python ArcGIS ImageryLayer.thumbnail用法及代碼示例
- Python ArcGIS ImageryLayer.draw_graph用法及代碼示例
- Python ArcGIS ImageryLayer.compute_stats_and_histograms用法及代碼示例
- Python ArcGIS ImageryLayer.plot_histograms用法及代碼示例
- Python ArcGIS ImageryLayer.compute_cache_info用法及代碼示例
- Python ArcGIS ImageryLayer.slices用法及代碼示例
- Python ArcGIS ImageryLayer.save用法及代碼示例
- Python ArcGIS ImageryLayer.query用法及代碼示例
- Python ArcGIS ImageryLayer.statistics用法及代碼示例
- Python ArcGIS ImageryLayer.compute_class_stats用法及代碼示例
- Python ArcGIS ImageryLayer.export_image用法及代碼示例
- Python ArcGIS ImageryLayer.compute_histograms用法及代碼示例
- Python ArcGIS ImageryLayer.measure用法及代碼示例
- Python ArcGIS ImageryLayer.get_histograms用法及代碼示例
- Python ArcGIS ImageryLayer.compute_angles用法及代碼示例
- Python ArcGIS ImageryLayer.filter_by用法及代碼示例
- Python ArcGIS ImageryLayer.identify用法及代碼示例
- Python ArcGIS ImageryLayerCacheManager.delete_tiles用法及代碼示例
- Python ArcGIS ImageryLayer用法及代碼示例
- Python ArcGIS ImageryLayerCacheManager.import_tiles用法及代碼示例
- Python ArcGIS ImageryLayerCacheManager.update_tiles用法及代碼示例
- Python ArcGIS ImageryTileManager.export用法及代碼示例
- Python ArcGIS ImageryTileManager.estimate_size用法及代碼示例
- Python arcgis.apps.hub.Initiative.update用法及代碼示例
- Python ArcGIS Item.publish用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.raster.ImageryLayer.to_features。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。