This document is archived and information here might be outdated. Recommended version. |
Reclassifies (or changes) the values of the input cells of a raster by using a remap that is built programmatically.
[Visual Basic .NET] Public Function ReclassByRemap ( _ ByVal GeoDataset As IGeoDataset, _ ByVal Remap As IRemap, _ ByVal retainMissingValues As Boolean _ ) As IGeoDataset
[C#] public IGeoDataset ReclassByRemap ( IGeoDataset GeoDataset, IRemap Remap, bool retainMissingValues );
[C++]
HRESULT ReclassByRemap(
IGeoDataset* GeoDataset,
IRemap* Remap,
VARIANT_BOOL retainMissingValues
);
[C++] Parameters GeoDataset [in]
GeoDataset is a parameter of type IGeoDataset* Remap [in]
Remap is a parameter of type IRemap* retainMissingValues [in]
retainMissingValues is a parameter of type bool
GeoDataset |
the input Raster, RasterDataset, RasterBand, or RasterDescriptor |
Remap |
the input remap object that supports IRemap interface. If reclassifying number or string values use the NumberRemap or StringRemap objects respectively. |
retainMissingValues |
a Boolean specifying whether to keep missing values in the analysis. If TRUE, values that have been omitted are given a NODATA value in output raster If FALSE, values that have been omitted are retained and unchanged in the output raster. |