ArcGIS Pro 3.2| |帮助归档 摘要 创建根据输入栅格数据集的范围或输入面要素类的形状裁剪的栅格对象。 说明 根据定义的空间范围,使用Clip函数提取栅格数据集的一部分。例如,要处理 Landsat 影像中的一小块区域,可以将栅格裁剪至感兴趣区域。 该函数用于创建已从参照栅格对象中裁剪出的栅格对象。
ArcGIS Pro 3.4| |Help archive Summary Cuts out a portion of a raster dataset, mosaic dataset, or image service layer. Illustration Usage This tool allows you to extract a portion of a raster dataset based on a template extent. The clip output includes any pixels that intersect the template ...
To clip a specific area on the map and use it as a basemap in Map Viewer, follow the steps below: Open the map in ArcGIS Pro and clip the layer to display only the desired area. Refer to ArcGIS Pro: Clip layers in a map for instructions. Publish the map as a web tile...
Currently, the two workarounds for this issue involve setting a smaller output extent for the clipped image and then mosaicking all of the outputs (How To: Merge Multiple Raster Datasets into a New Raster Dataset in ArcGIS Pro (esri.com)) or alternatively adjusting...
Raster Analytics (Get Started) Raster Analysis service tasks Get started with the Raster Analysis service Raster input Raster output Feature Input Feature Output Check job status Raster Analytics (Tasks) Add Image Aggregate Multidimensional Raster Analyze Changes Using CCDC Analyze Changes Using LandTrend...
ArcGIS Desktop–ArcGIS Image Analystextension for ArcGIS Pro ArcGIS Enterprise – ArcGIS Image Server with raster analyticsconfigured ArcGIS Online – Raster Analysis Using the model Follow theguideto use the model. Before using this model,ensure that the supported deep learninglibrariesare installed.For...
Essentially, you create a temporary raster. If you like the temporary result, you can save it to memory. Here are the steps to clip rasters using the “Raster Functions” in ArcGIS Pro: Step 1. Click the Raster Functions in the Imagery Ribbon ...
In ArcGIS and ArcGIS Pro, the Clip Tool is in the Analysis Toolbox within the Extract Toolset. When you run this tool, you need to set its inputs, clip features, and output feature class name. You can change the finer details about your geoprocessing in the environment settings. ...
Raster 输出裁剪栅格。 代码示例 裁剪示例 1 将国家土地覆被栅格数据集裁剪到单个州的范围。 import arcpy from arcpy.ia import * # Set input raster in_raster = arcpy.Raster("USA_Landcover.tif") # Clip the raster using a feature extent clip_raster = arcpy.ia.Clip(in_raster, aoi = "C:\...
import arcpy from arcpy.ia import * # Set input raster in_raster = arcpy.Raster("us_landcover.tif") # Create a polygon geometry object using the array object coordinates = [[-102.78838, 42.9953], [-104.0594, 43.8529], [-104.0489, 45.942993], [-102.78838, 42.9953]] array = arcpy.Array...