forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGPSDevice.cs
48 lines (41 loc) · 1.18 KB
/
GPSDevice.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TrackerHomeGPS
{
public struct GPSPosition
{
public static explicit operator GPSPosition(GarminUSBGPS.GarminRadianPosition grp)
{
GPSPosition temp = new GPSPosition();
temp.Lat = grp.lat * (180.0 / Math.PI);
temp.Lng = grp.lon * (180.0 / Math.PI);
return temp;
}
/// <summary>
/// Latitude (degrees)
/// </summary>
public double Lat;
/// <summary>
/// Longitude (degrees)
/// </summary>
public double Lng;
public double LatRad()
{
return Lat * (Math.PI / 180.0);
}
public double LngRad()
{
return Lng * (Math.PI / 180.0);
}
}
public abstract class GPSDevice : Device
{
//public event EventHandler GPSAvailable;
//public event EventHandler GPSUnavailable;
public abstract GPSPosition GetCoordinates();
public abstract bool IsAvailable();
public abstract string DeviceName();
}
}