ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Core.Data.Analyst3D Namespace / TerrainDataSource Class / MaximumResolution Property
Example

In This Topic
    MaximumResolution Property
    In This Topic
    Gets the maximum resolution for polyline or polygon surface data.
    Syntax
    Public ReadOnly Property MaximumResolution As Double
    public double MaximumResolution {get;}
    Example
    Get datasources from a Terrain
    {
      var dsCount = terrainDataset.GetDataSourceCount();
      IReadOnlyList<ArcGIS.Core.Data.Analyst3D.TerrainDataSource> dataSources = terrainDataset.GetDataSources();
      foreach (var ds in dataSources)
      {
        var dsName = ds.DataSourceName;
        var surfaceType = ds.SurfaceType;
        var maxResolution = ds.MaximumResolution;
        var minResolution = ds.MinimumResolution;
      }
    }
    Requirements

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

    ArcGIS Pro version: 3.2 or higher.
    See Also