Resolution Property (TerrainPyramidLevel)
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.
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;
}
Target Platforms: Windows 11, Windows 10
ArcGIS Pro version: 3.2 or higher.