forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPointLatLngAlt.cs
473 lines (382 loc) · 15.6 KB
/
PointLatLngAlt.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using GeoAPI.CoordinateSystems;
using GeoAPI.CoordinateSystems.Transformations;
using GMap.NET;
using ProjNet.CoordinateSystems;
using ProjNet.CoordinateSystems.Transformations;
using GeoUtility;
using GeoUtility.GeoSystem;
using System.Collections;
using GeoAPI.Geometries;
namespace MissionPlanner.Utilities
{
public class PointLatLngAlt: IComparable
{
public static readonly PointLatLngAlt Zero = new PointLatLngAlt();
public double Lat { get; set; } = 0;
public double Lng { get; set; } = 0;
public double Alt { get; set; } = 0;
public string Tag { get; set; } = "";
public string Tag2 { get; set; } = "";
public Color color { get; set; } = Color.White;
static CoordinateTransformationFactory ctfac = new CoordinateTransformationFactory();
static IGeographicCoordinateSystem wgs84 = GeographicCoordinateSystem.WGS84;
public PointLatLngAlt(double lat, double lng, double alt, string tag)
{
this.Lat = lat;
this.Lng = lng;
this.Alt = alt;
this.Tag = tag;
}
public PointLatLngAlt()
{
}
public PointLatLngAlt(GMap.NET.PointLatLng pll)
{
this.Lat = pll.Lat;
this.Lng = pll.Lng;
}
public PointLatLngAlt(double lat, double lng)
{
this.Lat = lat;
this.Lng = lng;
}
public PointLatLngAlt(double lat, double lng, double alt)
{
this.Lat = lat;
this.Lng = lng;
this.Alt = alt;
}
public PointLatLngAlt(Locationwp locwp)
{
this.Lat = locwp.lat;
this.Lng = locwp.lng;
this.Alt = locwp.alt;
}
public PointLatLngAlt(double[] dblarr)
{
this.Lat = dblarr[0];
this.Lng = dblarr[1];
if (dblarr.Length > 2)
this.Alt = dblarr[2];
}
public PointLatLngAlt(PointLatLngAlt plla)
{
this.Lat = plla.Lat;
this.Lng = plla.Lng;
this.Alt = plla.Alt;
this.color = plla.color;
this.Tag = plla.Tag;
}
public PointLatLng Point()
{
PointLatLng pnt = new PointLatLng(Lat, Lng);
return pnt;
}
public static implicit operator PointLatLngAlt(PointLatLng a)
{
return new PointLatLngAlt(a);
}
public static implicit operator PointLatLng(PointLatLngAlt a)
{
return a.Point();
}
public static implicit operator double[](PointLatLngAlt a)
{
return new double[] { a.Lng, a.Lat };
}
public static implicit operator PointLatLngAlt(double[] a)
{
if (a.Count() == 3)
{
return new PointLatLngAlt() { Lng = a[0], Lat = a[1], Alt = a[2]};
}
return new PointLatLngAlt() { Lng = a[0], Lat = a[1] };
}
public static implicit operator PointLatLngAlt(GeoUtility.GeoSystem.Geographic geo)
{
return new PointLatLngAlt() { Lat = geo.Latitude, Lng = geo.Longitude};
}
public override bool Equals(Object pllaobj)
{
PointLatLngAlt plla = pllaobj as PointLatLngAlt;
if (plla == null)
return false;
if (this.Lat == plla.Lat &&
this.Lng == plla.Lng &&
this.Alt == plla.Alt &&
this.color == plla.color &&
this.Tag == plla.Tag)
{
return true;
}
return false;
}
public static bool operator ==(PointLatLngAlt p1, PointLatLngAlt p2)
{
if (p1 is null && p2 is null)
return true;
if (p1 is null && !(p2 is null))
return false;
return p1.Equals(p2);
}
public static bool operator !=(PointLatLngAlt p1, PointLatLngAlt p2)
{
return !(p1 == p2);
}
public static bool operator ==(PointLatLngAlt p1, PointLatLng p2)
{
if (p1 == null || p2 == null)
return false;
if (p1.Lat == p2.Lat &&
p1.Lng == p2.Lng)
{
return true;
}
return false;
}
public static bool operator !=(PointLatLngAlt p1, PointLatLng p2)
{
return !(p1 == p2);
}
public override int GetHashCode()
{
return (int) (BitConverter.DoubleToInt64Bits(Lat) ^
BitConverter.DoubleToInt64Bits(Lng) ^
BitConverter.DoubleToInt64Bits(Alt));
}
public override string ToString()
{
return Lat + "," + Lng + "," + Alt + "," + Tag;
}
public int GetUTMZone()
{
int zone = (int)((Lng - -186.0) / 6.0);
if (Lat < 0)
zone *= -1;
return zone;
}
public int GetLngStartFromZone()
{
int zone = GetUTMZone();
return ((Math.Abs(zone) * 6) - 180) - 6;
}
public int GetLngEndFromZone()
{
int zone = GetUTMZone();
return ((Math.Abs(zone) * 6) - 180);
}
public int GetLatStartUTM()
{
return (int) (Lat - (Lat % 8));
}
public int GetLatEndUTM()
{
return (int)(Lat - (Lat % 8)) - 8;
}
public string GetFriendlyZone()
{
return GetUTMZone().ToString("0N;0S");
}
public string GetMGRS()
{
Geographic geo = new Geographic(Lng, Lat);
MGRS mgrs = (MGRS)geo;
return mgrs.ToString();
}
public static Coordinate[] Transform(Coordinate[] points, string sourceCoordinateSystemString, string targetCoordinateSystemString = "GEOGCS[\"GCS_WGS_1984\",DATUM[\"D_WGS_1984\",SPHEROID[\"WGS_1984\",6378137,298.257223563]],PRIMEM[\"Greenwich\",0],UNIT[\"Degree\",0.0174532925199433]]")
{
CoordinateSystemFactory coordinateSystemFactory = new CoordinateSystemFactory();
ICoordinateSystem sourceCoordinateSystem = coordinateSystemFactory.CreateFromWkt(sourceCoordinateSystemString);
ICoordinateSystem targetCoordinateSystem = coordinateSystemFactory.CreateFromWkt(targetCoordinateSystemString);
ICoordinateTransformation trans = (new CoordinateTransformationFactory()).CreateFromCoordinateSystems(sourceCoordinateSystem, targetCoordinateSystem);
return trans.MathTransform.TransformList(points).ToArray();
}
public static PointLatLngAlt FromUTM(int zone,double x, double y)
{
GeoUtility.GeoSystem.UTM utm = new GeoUtility.GeoSystem.UTM(Math.Abs(zone), x, y, zone < 0 ? GeoUtility.GeoSystem.Base.Geocentric.Hemisphere.South : GeoUtility.GeoSystem.Base.Geocentric.Hemisphere.North);
PointLatLngAlt ans = ((GeoUtility.GeoSystem.Geographic)utm);
return ans;
}
public double[] ToUTM()
{
return ToUTM(GetUTMZone());
}
// force a zone
public double[] ToUTM(int utmzone)
{
ICoordinateTransformation trans = TryGetTransform(utmzone, Lat);
double[] pll = { Lng, Lat };
// get leader utm coords
double[] utmxy = trans.MathTransform.Transform(pll);
return utmxy;
}
private static Dictionary<int, ICoordinateTransformation> coordtrans = new Dictionary<int, ICoordinateTransformation>();
static ICoordinateTransformation TryGetTransform(int utmzone, double lat)
{
if (lat < 0 && utmzone > 0)
utmzone *= -1;
lock (coordtrans)
if (coordtrans.ContainsKey(utmzone))
return coordtrans[utmzone];
IProjectedCoordinateSystem utm = ProjectedCoordinateSystem.WGS84_UTM(Math.Abs(utmzone), lat < 0 ? false : true);
ICoordinateTransformation trans = ctfac.CreateFromCoordinateSystems(wgs84, utm);
lock(coordtrans)
coordtrans[utmzone] = trans;
lock (coordtrans)
return coordtrans[utmzone];
}
public static List<double[]> ToUTM(int utmzone, List<PointLatLngAlt> list)
{
ICoordinateTransformation trans = TryGetTransform(utmzone, list[0].Lat);
List<double[]> data = new List<double[]>();
list.ForEach(x => { data.Add((double[])x); });
return trans.MathTransform.TransformList(data).ToList();
}
public static double[] ToUTM(int utmzone, double lat, double lng)
{
ICoordinateTransformation trans = TryGetTransform(utmzone, lat);
return trans.MathTransform.Transform(new double[] { lng, lat});
}
public PointLatLngAlt newpos(double bearing, double distance)
{
// '''extrapolate latitude/longitude given a heading and distance
// thanks to http://www.movable-type.co.uk/scripts/latlong.html
// '''
// from math import sin, asin, cos, atan2, radians, degrees
double radius_of_earth = 6378100.0;//# in meters
double lat1 = MathHelper.deg2rad * (this.Lat);
double lon1 = MathHelper.deg2rad * (this.Lng);
double brng = MathHelper.deg2rad * (bearing);
double dr = distance / radius_of_earth;
double lat2 = Math.Asin(Math.Sin(lat1) * Math.Cos(dr) +
Math.Cos(lat1) * Math.Sin(dr) * Math.Cos(brng));
double lon2 = lon1 + Math.Atan2(Math.Sin(brng) * Math.Sin(dr) * Math.Cos(lat1),
Math.Cos(dr) - Math.Sin(lat1) * Math.Sin(lat2));
double latout = MathHelper.rad2deg * (lat2);
double lngout = MathHelper.rad2deg * (lon2);
return new PointLatLngAlt(latout, lngout, this.Alt, this.Tag);
}
/// <summary>
/// move a point a specific number of meters
/// </summary>
/// <param name="east"></param>
/// <param name="north"></param>
/// <returns></returns>
public PointLatLngAlt gps_offset(double east, double north)
{
double bearing = Math.Atan2(east, north) * MathHelper.rad2deg;
double distance = Math.Sqrt(Math.Pow(east, 2) + Math.Pow(north, 2));
return newpos(bearing, distance);
}
public double GetBearing(PointLatLngAlt p2)
{
var latitude1 = MathHelper.deg2rad * (this.Lat);
var latitude2 = MathHelper.deg2rad * (p2.Lat);
var longitudeDifference = MathHelper.deg2rad * (p2.Lng - this.Lng);
var y = Math.Sin(longitudeDifference) * Math.Cos(latitude2);
var x = Math.Cos(latitude1) * Math.Sin(latitude2) - Math.Sin(latitude1) * Math.Cos(latitude2) * Math.Cos(longitudeDifference);
return (MathHelper.rad2deg * (Math.Atan2(y, x)) + 360) % 360;
}
public double GetAngle(PointLatLngAlt point, double heading)
{
double angle = GetBearing(point) - heading;
if (angle < -180.0)
{
angle += 360.0;
}
if (angle > 180.0)
{
angle -= 360.0;
}
return angle;
}
/// <summary>
/// Calc Distance in M
/// </summary>
/// <param name="p2"></param>
/// <returns>Distance in M</returns>
public double GetDistance(PointLatLngAlt p2)
{
double d = Lat * 0.017453292519943295;
double num2 = Lng * 0.017453292519943295;
double num3 = p2.Lat * 0.017453292519943295;
double num4 = p2.Lng * 0.017453292519943295;
double num5 = num4 - num2;
double num6 = num3 - d;
double num7 = Math.Pow(Math.Sin(num6 / 2.0), 2.0) + ((Math.Cos(d) * Math.Cos(num3)) * Math.Pow(Math.Sin(num5 / 2.0), 2.0));
double num8 = 2.0 * Math.Atan2(Math.Sqrt(num7), Math.Sqrt(1.0 - num7));
return (6371 * num8) * 1000.0; // M
}
public double GetDistance2(PointLatLngAlt p2)
{
//http://www.movable-type.co.uk/scripts/latlong.html
var R = 6371.0; // 6371 km
var dLat = (p2.Lat - Lat) * MathHelper.deg2rad;
var dLon = (p2.Lng - Lng) * MathHelper.deg2rad;
var lat1 = Lat * MathHelper.deg2rad;
var lat2 = p2.Lat * MathHelper.deg2rad;
var a = Math.Sin(dLat / 2.0) * Math.Sin(dLat / 2.0) +
Math.Sin(dLon / 2.0) * Math.Sin(dLon / 2.0) * Math.Cos(lat1) * Math.Cos(lat2);
var c = 2.0 * Math.Atan2(Math.Sqrt(a), Math.Sqrt(1.0 - a));
var d = R * c * 1000.0; // M
return d;
}
/// <summary>
/// https://www.movable-type.co.uk/scripts/latlong.html
/// </summary>
/// <param name="p2"></param>
/// <param name="f">0-1</param>
/// <returns></returns>
public PointLatLngAlt GetGreatCirclePathPoint(PointLatLngAlt p2, double f)
{
var dLat = (p2.Lat - Lat) * MathHelper.deg2rad;
var dLon = (p2.Lng - Lng) * MathHelper.deg2rad;
var R = 6378100.0; // 6371 km
var angdist = this.GetDistance(p2) / R;
//φ = lat
//δ = d/R
//λ2 = lon
var a = Math.Sin((1-f) * angdist) / Math.Sin(angdist);
var b = Math.Sin(f * angdist) / Math.Sin(angdist);
var x = a * Math.Cos(Lat * MathHelper.deg2rad) * Math.Cos(Lng * MathHelper.deg2rad) + b * Math.Cos(p2.Lat * MathHelper.deg2rad) * Math.Cos(p2.Lng * MathHelper.deg2rad);
var y = a * Math.Cos(Lat * MathHelper.deg2rad) * Math.Sin(Lng * MathHelper.deg2rad) + b * Math.Cos(p2.Lat * MathHelper.deg2rad) * Math.Sin(p2.Lng * MathHelper.deg2rad);
var z = a * Math.Sin(Lat * MathHelper.deg2rad) + b * Math.Sin(p2.Lat * MathHelper.deg2rad);
var alat = Math.Atan2(z, Math.Sqrt(x * x + y * y));
var alon = Math.Atan2(y, x);
return new PointLatLngAlt(alat * MathHelper.rad2deg, alon * MathHelper.rad2deg);
}
public int CompareTo(object obj)
{
PointLatLngAlt pnt = obj as PointLatLngAlt;
if (pnt == null)
return 1;
double wpno = 0;
double wpnothis = 0;
if (!double.TryParse(this.Tag, out wpnothis))
{
return 0;
}
if (double.TryParse(pnt.Tag, out wpno))
{
if (wpno < wpnothis)
return 1;
if (wpno > wpnothis)
return -1;
return 0;
}
else
{
return 0;
}
}
public static explicit operator PointLatLngAlt(Locationwp v)
{
return new PointLatLngAlt(v.lat, v.lng, v.alt);
}
}
}