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


IInterpolationOp2.TopoToRasterByFile Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GeoAnalyst > ESRI.ArcGIS.GeoAnalyst > Interfaces > II > IInterpolationOp2 Interface > IInterpolationOp2.TopoToRasterByFile Method
ArcGIS Developer Help

IInterpolationOp2.TopoToRasterByFile Method

Interpolates using AnuDem.

[Visual Basic .NET]
Public Function TopoToRasterByFile ( _
    ByVal paramFile As String, _
    [ByRef outStream As IFeatureClass], _
    [ByRef outSink As IFeatureClass] _
) As IRasterDataset
[C#]
public IRasterDataset TopoToRasterByFile (
    string paramFile,
    ref IFeatureClass outStream,
    ref IFeatureClass outSink
);
[C++]
HRESULT TopoToRasterByFile(
  BSTR paramFile,
  IFeatureClass** outStream,
  IFeatureClass** outSink
);
[C++]
Parameters
paramFile [in]

paramFile is a parameter of type BSTR outStream [out, optional]
outStream is a parameter of type IFeatureClass** outSink [out, optional]
outSink is a parameter of type IFeatureClass**

Product Availability

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

Description

Generates a hydrologically correct raster of elevation

Remarks

paramFile

The input path to a parameter file specifing required parameters to create the surface. The file can be created using a text editor or saved from the Geoprocessing Topo_to_Raster tool.

[outStream]

Output feature class of stream polyline features

[outSink]

Output feature class of remaining sink point features

See Also

IInterpolationOp2 Interface