ArcGIS Pro 3.4 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / Map Class / GetElevationProfileFromSurface Method / GetElevationProfileFromSurface(MapPoint,MapPoint,Int32,ElevationSurfaceLayer,SurfaceZsMissingHandler) Method
The start point.
The end point.
The number of points required in the resulting polyline. Note this count includes the start and end points.
Identifies the surface to be used. If null is specified, then the default Ground Surface will be used.
provides options to handle missing Zs in the surface

In This Topic
    GetElevationProfileFromSurface(MapPoint,MapPoint,Int32,ElevationSurfaceLayer,SurfaceZsMissingHandler) Method
    In This Topic
    Gets an elevation profile calculated between startPoint and endPoint. Intermediate points are calculated at equal distances between the end points according to the numPoints specified. All Z values of the calculated polyline are populated from the specified Elevation Surface Layer.
    Syntax

    Parameters

    startPoint
    The start point.
    endPoint
    The end point.
    numPoints
    The number of points required in the resulting polyline. Note this count includes the start and end points.
    surfaceLayer
    Identifies the surface to be used. If null is specified, then the default Ground Surface will be used.
    missingHandler
    provides options to handle missing Zs in the surface

    Return Value

    An ElevationProfileResult. If successful, this contains the generated polyline.
    Exceptions
    ExceptionDescription
    startPoint or endPoint are null.
    startPoint or endPoint cannot be empty.
    numPoints cannot be smaller than 10.
    This Map does not have the specified surfaceLayer.
    This Map does not have a visible Ground Surface Layer.
    Remarks
    The missingHandler will be used to determine what to do if the surface has no data at a particular input geometry point. The corresponding output geometries point or vertex Zs will be set to the value specified in the provided missingHandler.OutputZ property. The missingHandler.OnlyProcessMissingZs parameter can be used to overwrite all Z values or only those that are designated as missing based on a comparison with the InputZ value.
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.4 or higher.
    See Also