namespace GpsClient2 { public enum CoordinateType { Latitude, Longitude } public enum GpsFixQuality { Invalid = 0, /// /// GPS fix (SPS) /// GpsFix = 1, /// /// DGPS fix /// DgpsFix = 2, /// /// PPS fix /// PpsFix = 3, /// /// Real Time Kinematic /// Rtk = 4, /// /// Float RTK /// FloatRtk = 5, /// /// estimated (dead reckoning) (2.3 feature) /// Estimated = 6, /// /// Manual input mode /// ManualInput = 7, /// /// Simulation mode /// Simulation = 8 } public enum SatelliteFixType { NoFix, TwoDFix, ThreeDFix } public enum FileType { Nmea, Gpsd, LatitudeLongitude, } public enum GpsCoordinateSystem { Lambert72, GeoEtrs89, } public enum GpsStatus { Disabled, Connecting, Connected } public enum GpsType { File, ComPort, Gpsd, WindowsLocationApi } }