ArcObjects Library Reference (SpatialAnalyst)  

ILocalOp.EqualTo Method

Calculates the local equal-to values between GeoDatasets.

[Visual Basic .NET]
Public Function EqualTo ( _
    ByVal ValueData As IGeoDataset, _
    ByVal LocalData As IGeoDataset _
) As IGeoDataset
[C#]
public IGeoDataset EqualTo (
    IGeoDataset ValueData,
    IGeoDataset LocalData
);
[C++]
HRESULT EqualTo(
  IGeoDataset* ValueData,
  IGeoDataset* LocalData,
  IGeoDataset** outGeodataset
);
[C++]

Parameters

ValueData [in]

  ValueData is a parameter of type IGeoDataset

LocalData [in]

  LocalData is a parameter of type IGeoDataset

outGeodataset [out, retval]

  outGeodataset is a parameter of type IGeoDataset

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires Spatial Analyst Extension.

Remarks

valueData

an input Raster, RasterDataset, RasterBand, or RasterDescriptor defining the values that will be used to determine the number of times that the value occurs in each Raster in the LocalData multiband Raster for each cell location

localData

a multiband input Raster, RasterDataset, RasterBand, or RasterDescriptor defining the list of Rasters that is used to evaluate the number of occurrences the values in the list of Rasters are equal to the first argument (valueData) for each cell location

 

See Also

ILocalOp Interface