从栅格 ArcGIS 中提取值 10.x
Extract values from raster ArcGIS 10.x
我刚得到植被栅格。它的像素有几个字段(即橡树断面积、橡树密度、橡树体积、像素值等)。如何仅将选定的字段值提取到一组 XY 点?
您将使用的主要工具是 Raster to Point(转换工具箱)。它包括一个参数来选择从哪个字段中提取数据:
The Field parameter allows you to choose which attribute field of the input raster dataset will become an attribute in the output feature class. If a field is not specified, the cell values of the input raster (the VALUE field) will become a column with the heading Grid_code in the attribute table of the output feature class.
如果您想排除某些值或对数据进行子集化,可以在转换之前(使用 Con 或类似方法)或之后(select 按属性导出或删除)完成。之后再做会给你更多的灵活性,但会导致更大的点数据集。
我刚得到植被栅格。它的像素有几个字段(即橡树断面积、橡树密度、橡树体积、像素值等)。如何仅将选定的字段值提取到一组 XY 点?
您将使用的主要工具是 Raster to Point(转换工具箱)。它包括一个参数来选择从哪个字段中提取数据:
The Field parameter allows you to choose which attribute field of the input raster dataset will become an attribute in the output feature class. If a field is not specified, the cell values of the input raster (the VALUE field) will become a column with the heading Grid_code in the attribute table of the output feature class.
如果您想排除某些值或对数据进行子集化,可以在转换之前(使用 Con 或类似方法)或之后(select 按属性导出或删除)完成。之后再做会给你更多的灵活性,但会导致更大的点数据集。