ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / SurfaceValues Class / SlopeDegrees Property
Example

In This Topic
    SlopeDegrees Property
    In This Topic
    Gets the slope in degrees.
    Syntax
    Public ReadOnly Property SlopeDegrees As Double
    public double SlopeDegrees {get;}
    Example
    Get Elevation, Slope, Aspect from TIN layer at a location
    {
      // Note: Needs QueuedTask to run
      {
        // get elevation, slope and aspect values
        SurfaceValues values = tinLayer.GetSurfaceValues(mapPoint);
        var elev = values.Elevation;
        var slopeRadians = values.Slope;
        var slopeDegrees = values.SlopeDegrees;
        var slopePercent = values.SlopePercent;
        var aspectRadians = values.Aspect;
        var aspectDegrees = values.AspectDegrees;
      }
    }
    Requirements

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

    ArcGIS Pro version: 3.4 or higher.
    See Also