Remap

摘要

将栅格对象的像素值分类为具有特定值的组。

例如,分配 1 到 25 的图像值 1,分配 200 到 255 的图像值分 255。

说明

有关此函数工作原理的详细信息,请参阅重映射栅格函数。

栅格对象所引用的栅格数据集是临时性的。 要将其设置为永久,可以调用栅格对象的 save 方法。

语法

Remap (raster, {input_ranges}, {output_values}, {no_data_ranges}, {allow_unmatched}, {replacement_value})
参数说明数据类型
raster

The input raster.

Raster
input_ranges

Input ranges are specified in pairs: from (inclusive) and to (exclusive).

(默认值为 None)

Double
output_values

The output values of the corresponding input_ranges parameter value.

(默认值为 None)

Double
no_data_ranges

NoData ranges are specified in pairs: from (inclusive) and to (exclusive).

(默认值为 None)

Double
allow_unmatched

Missing values in the reclass table can retain their value or be remapped to NoData or to a replacement value.

  • True—Any pixel from the input raster that is not reclassed in a remap table will retain its value and be written for its location to the output raster.
  • False—Any pixel from the input raster that is not reclassed in a remap table will have its value remapped to NoData or to a replacement value for its location to the output raster.

(默认值为 True)

Boolean
replacement_value

The value that will replace missing or unmatched values in the output when the allow_unmatched parameter is set to False.

(默认值为 None)

Double
返回值
数据类型说明
Raster

输出栅格。


在本主题中