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


ISurfaceOp.Slope Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GeoAnalyst > ESRI.ArcGIS.GeoAnalyst > Interfaces > IS > ISurfaceOp Interface > ISurfaceOp.Slope Method
ArcGIS Developer Help

ISurfaceOp.Slope Method

Calculates Slope.

[Visual Basic .NET]
Public Function Slope ( _
    ByVal GeoDataset As IGeoDataset, _
    ByVal SlopeType As esriGeoAnalysisSlopeEnum, _
    [ByRef zFactor As Object] _
) As IGeoDataset
[C#]
public IGeoDataset Slope (
    IGeoDataset GeoDataset,
    esriGeoAnalysisSlopeEnum SlopeType,
    ref object zFactor
);
[C++]
HRESULT Slope(
  IGeoDataset* GeoDataset,
  esriGeoAnalysisSlopeEnum SlopeType,
  Variant* zFactor
);
[C++]
Parameters
GeoDataset [in]

GeoDataset is a parameter of type IGeoDataset* SlopeType [in]
SlopeType is a parameter of type esriGeoAnalysisSlopeEnum zFactor [in, optional]
zFactor is a parameter of type VARIANT*

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

geoDataset

an input Raster, RasterDataset, RasterBand, or RasterDescriptor

slopeType

esriGeoAnalysisSlopeEnum specifying the units in which the value of slope will be expressed

esriGeoAnalysisSlopeDegree with this option the inclination of slope will be calculated in degrees

esriGeoAnalysisSlopePercentrise indicates to output the percent rise, also referred to as the percent slope

[zFactor]

the number of ground x, y Units in one surface ZUnit

The geoDataset ZUnits are multiplied by the specified zFactor to adjust the output Raster ZUnits to another unit of measure. If no zFactor is specified the value of the zFactor is 1. Higher z values will result in a more exaggerated relief (surface) and thus in a more extreme shading.

 

See Also

ISurfaceOp Interface