ArcObjects Library Reference (GeoAnalyst)  

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,
  IRasterDataset** outSurface
);
[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

outSurface [out, retval]

  outSurface is a parameter of type IRasterDataset

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