ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Core.Data.Analyst3D Namespace / TerrainPyramidLevel Class
Members Example

In This Topic
    TerrainPyramidLevel Class
    In This Topic
    Represents a pyramid level of a Terrain. See GetPyramidLevels.
    Syntax
    public sealed class TerrainPyramidLevel 
    Public NotInheritable Class TerrainPyramidLevel 
    Remarks
    Terrain data is organized for fast retrieval. This organization involves the creation of terrain pyramids that are used to quickly retrieve only the data necessary to construct a surface of the required level of detail (LOD) for a given area of interest (AOI) from the database.
    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;
    }
    Inheritance Hierarchy

    System.Object
       ArcGIS.Core.Data.Analyst3D.TerrainPyramidLevel

    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.2 or higher.
    See Also