ArcGIS Pro 3.3 API Reference Guide
ArcGIS.Core.Data.Analyst3D Namespace / TerrainPyramidLevel Class / Resolution Property
Example

In This Topic
    Resolution Property (TerrainPyramidLevel)
    In This Topic
    The resolution of the pyramid level. If the TerrainDefinition.GetPyramidType is TerrainPyramidType.ZTolerance this is the Z tolerance value. If the PyramidType is TerrainPyramidType.WindowSize this value is the window size.
    Syntax
    public double Resolution {get;}
    Public ReadOnly Property Resolution As Double
    Example
    Get Pyramid Level Information from a Terrain
    var levelCount = terrain.GetPyramidLevelCount();
    IReadOnlyList<ArcGIS.Core.Data.Analyst3D.TerrainPyramidLevel> pyramidLevels = terrain.GetPyramidLevels();
    foreach (var pyramidLevel in pyramidLevels)
    {
      var resolution = pyramidLevel.Resolution;
      var maxScale = pyramidLevel.MaximumScale;
    }
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.2 or higher.
    See Also