ArcGIS Pro 3.7 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 ReadOnly Property Resolution As Double
    public double Resolution {get;}
    Example
    Get Pyramid Level Information from a Terrain
    {
      var levelCount = terrainDataset.GetPyramidLevelCount();
      IReadOnlyList<ArcGIS.Core.Data.Analyst3D.TerrainPyramidLevel> pyramidLevels = terrainDataset.GetPyramidLevels();
      foreach (var pyramidLevel in pyramidLevels)
      {
        var resolution = pyramidLevel.Resolution;
        var maxScale = pyramidLevel.MaximumScale;
      }
    }
    Requirements

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

    ArcGIS Pro version: 3.2 or higher.
    See Also