ArcGIS Pro 3.7 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 NotInheritable Class TerrainPyramidLevel 
    public sealed 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 = terrainDataset.GetPyramidLevelCount();
      IReadOnlyList<ArcGIS.Core.Data.Analyst3D.TerrainPyramidLevel> pyramidLevels = terrainDataset.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 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.2 or higher.
    See Also