AirScout/ScoutBase/ScoutBase.Elevation/ElevationModel.cs

18 wiersze
281 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ScoutBase.Elevation
{
public enum ELEVATIONMODEL
{
NONE = 0,
GLOBE = 1,
SRTM3 = 2,
SRTM1 = 3,
ASTER3 = 4,
ASTER1 = 5
}
}