ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / RasterLayer Class / InterpolateShapeVertices Method
The multipart to be interpolated. It must be a polyline or polygon.

In This Topic
    InterpolateShapeVertices Method (RasterLayer)
    In This Topic
    Interpolates Z values for a geometric shape from the raster surface layer at it's vertices only. Bilinear interpolation is used. This method requires a 3D Analyst license. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    Public Function InterpolateShapeVertices( _
       ByVal multipart As Multipart _
    ) As Geometry
    public Geometry InterpolateShapeVertices( 
       Multipart multipart
    )

    Parameters

    multipart
    The multipart to be interpolated. It must be a polyline or polygon.

    Return Value

    A ArcGIS.Core.Geometry.Geometry with surface elevation z values.
    Exceptions
    ExceptionDescription
    multipart cannot be null.
    multipart cannot be empty.
    An exception occurred within the InterpolateShapeVertices calculation.
    This method or property must be called within the lambda passed to QueuedTask.Run.
    A 3D Analyst license is required.
    Remarks
    A null geometry is returned if any portion of the input falls outside the surface.

    InterpolateShapeVertices will handle differences in spatial reference between the input shape and the surface. It will project (a copy of) the input geometry to match the surface for the sake of interpolation. It will then re-project the output geometry so it's the same as the input shape.

    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.4 or higher.
    See Also