-
Notifications
You must be signed in to change notification settings - Fork 1
/
ElevationProfile.cs
335 lines (272 loc) · 11.3 KB
/
ElevationProfile.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using ZedGraph;
using GMap.NET;
using System.Xml;
using MissionPlanner.Utilities; // GE xml alt reader
namespace MissionPlanner
{
public partial class ElevationProfile : Form
{
List<PointLatLngAlt> gelocs = new List<PointLatLngAlt>();
List<PointLatLngAlt> srtmlocs = new List<PointLatLngAlt>();
List<PointLatLngAlt> planlocs = new List<PointLatLngAlt>();
PointPairList list1 = new PointPairList();
PointPairList list2 = new PointPairList();
PointPairList list3 = new PointPairList();
PointPairList list4terrain = new PointPairList();
int distance = 0;
double homealt = 0;
GCSViews.FlightPlanner.altmode altmode = GCSViews.FlightPlanner.altmode.Relative;
public ElevationProfile(List<PointLatLngAlt> locs, double homealt, GCSViews.FlightPlanner.altmode altmode)
{
InitializeComponent();
this.altmode = altmode;
planlocs = locs;
for (int a = 0; a < planlocs.Count; a++)
{
if (planlocs[a] == null || planlocs[a].Tag != null && planlocs[a].Tag.Contains("ROI"))
{
planlocs.RemoveAt(a);
a--;
}
}
if (planlocs.Count <= 1)
{
CustomMessageBox.Show("Please plan something first", Strings.ERROR);
return;
}
// get total distance
distance = 0;
PointLatLngAlt lastloc = null;
foreach (PointLatLngAlt loc in planlocs)
{
if (loc == null)
continue;
if (lastloc != null)
{
distance += (int) loc.GetDistance(lastloc);
}
lastloc = loc;
}
this.homealt = homealt/CurrentState.multiplierdist;
Form frm = Common.LoadingBox("Loading", "using srtm data"); //Downloading Google Earth Data
gelocs = getGEAltPath(planlocs);
srtmlocs = getSRTMAltPath(planlocs);
frm.Close();
MissionPlanner.Utilities.Tracking.AddPage(this.GetType().ToString(), this.Text);
}
private void ElevationProfile_Load(object sender, EventArgs e)
{
if (planlocs.Count <= 1)
{
this.Close();
return;
}
// GE plot
double a = 0;
double increment = (distance/(float)(gelocs.Count - 1));
foreach (PointLatLngAlt geloc in gelocs)
{
if (geloc == null)
continue;
list2.Add(a, geloc.Alt);
Console.WriteLine("GE " + geloc.Lng + "," + geloc.Lat + "," + geloc.Alt);
a += increment;
}
// Planner Plot
a = 0;
int count = 0;
PointLatLngAlt lastloc = null;
foreach (PointLatLngAlt planloc in planlocs)
{
if (planloc == null)
continue;
if (lastloc != null)
{
a += planloc.GetDistance(lastloc);
}
// deal with at mode
if (altmode == GCSViews.FlightPlanner.altmode.Terrain)
{
list1 = list4terrain;
break;
}
else if (altmode == GCSViews.FlightPlanner.altmode.Relative)
{
// already includes the home alt
list1.Add(a, (planloc.Alt/CurrentState.multiplierdist), 0, planloc.Tag);
}
else
{
// abs
// already absolute
list1.Add(a, (planloc.Alt/CurrentState.multiplierdist), 0, planloc.Tag);
}
lastloc = planloc;
count++;
}
// draw graph
CreateChart(zg1);
}
List<PointLatLngAlt> getSRTMAltPath(List<PointLatLngAlt> list)
{
List<PointLatLngAlt> answer = new List<PointLatLngAlt>();
PointLatLngAlt last = null;
double disttotal = 0;
foreach (PointLatLngAlt loc in list)
{
if (loc == null)
continue;
if (last == null)
{
last = loc;
continue;
}
double dist = last.GetDistance(loc);
int points = (int) (dist/10) + 1;
double deltalat = (last.Lat - loc.Lat);
double deltalng = (last.Lng - loc.Lng);
double steplat = deltalat/points;
double steplng = deltalng/points;
PointLatLngAlt lastpnt = last;
for (int a = 0; a <= points; a++)
{
double lat = last.Lat - steplat*a;
double lng = last.Lng - steplng*a;
var newpoint = new PointLatLngAlt(lat, lng, srtm.getAltitude(lat, lng).alt, "");
double subdist = lastpnt.GetDistance(newpoint);
disttotal += subdist;
// srtm alts
list3.Add(disttotal, newpoint.Alt/CurrentState.multiplierdist);
// terrain alt
list4terrain.Add(disttotal, (newpoint.Alt - homealt + loc.Alt)/CurrentState.multiplierdist);
lastpnt = newpoint;
}
answer.Add(new PointLatLngAlt(loc.Lat, loc.Lng, srtm.getAltitude(loc.Lat, loc.Lng).alt, ""));
last = loc;
}
return answer;
}
List<PointLatLngAlt> getGEAltPath(List<PointLatLngAlt> list)
{
double alt = 0;
double lat = 0;
double lng = 0;
int pos = 0;
List<PointLatLngAlt> answer = new List<PointLatLngAlt>();
//http://code.google.com/apis/maps/documentation/elevation/
//http://maps.google.com/maps/api/elevation/xml
string coords = "";
foreach (PointLatLngAlt loc in list)
{
if (loc == null)
continue;
coords = coords + loc.Lat.ToString(new System.Globalization.CultureInfo("en-US")) + "," +
loc.Lng.ToString(new System.Globalization.CultureInfo("en-US")) + "|";
}
coords = coords.Remove(coords.Length - 1);
if (list.Count < 2 || coords.Length > (2048 - 256))
{
CustomMessageBox.Show("Too many/few WP's or to Big a Distance " + (distance/1000) + "km", Strings.ERROR);
return answer;
}
try
{
using (
XmlTextReader xmlreader =
new XmlTextReader("http://maps.google.com/maps/api/elevation/xml?path=" + coords + "&samples=" +
(distance/100).ToString(new System.Globalization.CultureInfo("en-US")) +
"&sensor=false"))
{
while (xmlreader.Read())
{
xmlreader.MoveToElement();
switch (xmlreader.Name)
{
case "elevation":
alt = double.Parse(xmlreader.ReadString(), new System.Globalization.CultureInfo("en-US"));
Console.WriteLine("DO it " + lat + " " + lng + " " + alt);
PointLatLngAlt loc = new PointLatLngAlt(lat, lng, alt, "");
answer.Add(loc);
pos++;
break;
case "lat":
lat = double.Parse(xmlreader.ReadString(), new System.Globalization.CultureInfo("en-US"));
break;
case "lng":
lng = double.Parse(xmlreader.ReadString(), new System.Globalization.CultureInfo("en-US"));
break;
default:
break;
}
}
}
}
catch
{
CustomMessageBox.Show("Error getting GE data", Strings.ERROR);
}
return answer;
}
public void CreateChart(ZedGraphControl zgc)
{
GraphPane myPane = zgc.GraphPane;
// Set the titles and axis labels
myPane.Title.Text = "Elevation above ground";
myPane.XAxis.Title.Text = "Distance (m)";
myPane.YAxis.Title.Text = "Elevation (m)";
LineItem myCurve;
myCurve = myPane.AddCurve("Planner", list1, Color.Red, SymbolType.None);
myCurve = myPane.AddCurve("GE", list2, Color.Green, SymbolType.None);
myCurve = myPane.AddCurve("SRTM", list3, Color.Blue, SymbolType.None);
foreach (PointPair pp in list1)
{
// Add a another text item to to point out a graph feature
TextObj text = new TextObj((string) pp.Tag, pp.X, pp.Y);
// rotate the text 90 degrees
text.FontSpec.Angle = 90;
text.FontSpec.FontColor = Color.White;
// Align the text such that the Right-Center is at (700, 50) in user scale coordinates
text.Location.AlignH = AlignH.Right;
text.Location.AlignV = AlignV.Center;
// Disable the border and background fill options for the text
text.FontSpec.Fill.IsVisible = false;
text.FontSpec.Border.IsVisible = false;
myPane.GraphObjList.Add(text);
}
// Show the x axis grid
myPane.XAxis.MajorGrid.IsVisible = true;
myPane.XAxis.Scale.Min = 0;
myPane.XAxis.Scale.Max = distance;
// Make the Y axis scale red
myPane.YAxis.Scale.FontSpec.FontColor = Color.Red;
myPane.YAxis.Title.FontSpec.FontColor = Color.Red;
// turn off the opposite tics so the Y tics don't show up on the Y2 axis
myPane.YAxis.MajorTic.IsOpposite = false;
myPane.YAxis.MinorTic.IsOpposite = false;
// Don't display the Y zero line
myPane.YAxis.MajorGrid.IsZeroLine = true;
// Align the Y axis labels so they are flush to the axis
myPane.YAxis.Scale.Align = AlignP.Inside;
// Manually set the axis range
//myPane.YAxis.Scale.Min = -1;
//myPane.YAxis.Scale.Max = 1;
// Fill the axis background with a gradient
//myPane.Chart.Fill = new Fill(Color.White, Color.LightGray, 45.0f);
// Calculate the Axis Scale Ranges
try
{
zg1.AxisChange();
}
catch
{
}
}
}
}