本文简要介绍 python 语言中 arcgis.raster.RasterCollection.map
的用法。
用法:
map(func, context=None)
返回:
在每个项目上应用 func 后,从现有的
RasterCollection
创建一个新的RasterCollection
。
map
方法将 Python 函数映射到栅格集合上。Parameter
Description
func
必需的。用于映射栅格集合的 Python 函数。函数的返回值必须是其中一个键是光栅的字典。例如,{“raster”:output_raster_object、“name”:input_item_name[“name”]}。
context
可选字典。用于控制 RasterCollection 创建的其他属性。上下文参数的默认值将与应用于父集合的上下文设置的默认值相同。
目前可用:
query_boundary: This boolean value set to this option determines whether to add SHAPE field to the RasterCollection. The value in the SHAPE field represents the boundary/geometry of the raster. The query_boundary parameter is honoured only when the RasterCollection is created from a list of Rasters.
True: Set query_boundary to True to add the SHAPE field to the RasterCollection.
False: Set query_boundary to False to not add the SHAPE field to the RasterCollection. (Creation of RasterCollection would be faster)
Example:
{“query_boundary”:True}
例子:
# Usage Example: This snippet maps grayscale function to each raster item in the raster collection. rc_local = RasterCollection(r"./data/rasters.gdb/rasters") def apply_grayscale(item): raster = item["Raster"] gray = grayscale(raster) return {"raster": gray, "Name": item["Name"], "StdTime": item["AcquisitionDate"]} gray_rc = rc_local.map(func=apply_grayscale)
相关用法
- Python ArcGIS RasterCollection.filter_by_raster_property用法及代码示例
- Python ArcGIS RasterCollection.filter_by_time用法及代码示例
- Python ArcGIS RasterCollection.filter_by_geometry用法及代码示例
- Python ArcGIS RasterCollection.from_stac_catalog用法及代码示例
- Python ArcGIS RasterCollection.filter_by_calendar_range用法及代码示例
- Python ArcGIS RasterCollection.filter_by_attribute用法及代码示例
- Python ArcGIS RasterCollection.filter_by用法及代码示例
- Python ArcGIS RasterCollection.to_multidimensional_raster用法及代码示例
- Python ArcGIS RasterCollection.from_stac_api用法及代码示例
- Python ArcGIS RasterCollection用法及代码示例
- Python ArcGIS Raster.remove_variables用法及代码示例
- Python ArcGIS Raster.export_image用法及代码示例
- Python ArcGIS Raster.get_dimension_values用法及代码示例
- Python ArcGIS Raster.get_dimension_attributes用法及代码示例
- Python ArcGIS Raster.read用法及代码示例
- Python ArcGIS Raster.append_slices用法及代码示例
- Python ArcGIS Raster.summarize用法及代码示例
- Python ArcGIS RasterManager.add用法及代码示例
- Python ArcGIS Raster.get_variable_attributes用法及代码示例
- Python ArcGIS Raster.get_dimension_names用法及代码示例
- Python ArcGIS RasterInfo.from_dict用法及代码示例
- Python ArcGIS Raster.get_statistics用法及代码示例
- Python ArcGIS Raster.from_stac_item用法及代码示例
- Python ArcGIS Raster.set_colormap用法及代码示例
- Python ArcGIS Raster.set_histograms用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.raster.RasterCollection.map。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。