This document is archived and information here might be outdated.  Recommended version.


ILocalOp.GreaterThan Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > SpatialAnalyst > ESRI.ArcGIS.SpatialAnalyst > Interfaces > IL > ILocalOp Interface > ILocalOp.GreaterThan Method
ArcGIS Developer Help

ILocalOp.GreaterThan Method

Calculates the local greater-than values between GeoDatasets.

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

ValueData is a parameter of type IGeoDataset* LocalData [in]
LocalData is a parameter of type IGeoDataset*

Product Availability

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

Remarks

valueDataset

an input Raster, RasterDataset, RasterBand, or RasterDescriptor defining the value that will be used to determine the number of times that values in the argument list, the localDataset, are greater than the specified input for each cell location

localDataset

a multiband input Raster, RasterDataset, RasterBand, or RasterDescriptor defining the argument list that is used to evaluate the number of occurrences the values of the argument list are greater than in the valueDataset for each cell location

 

See Also

ILocalOp Interface