a cool method of analyzing a flight in 3D when viewed with google earth. I think it will be very helpful to determine P3 errant behaviour
here is the process, not automatic am afraid...
output the csv
open it in Excel or Google sheets
delete all the columns except lat,lon,altitude
switch the lat & lon columns VERY NB
delete the row with the header
save/download as csv
open the csv in wordpad
copy the contents (should be no extra commas)
open the kml file in notepad
replace coordinates
edit the other obvious text as required
here is the kml file code
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="
http://www.opengis.net/kml/2.2">
<Document>
<name>Stephan’s Drone flight</name>
<description>Add your own description here. This flight occured on blah blah blah</description>
<Style id="yellowLineGreenPoly">
<LineStyle>
<color>7f00ffff</color>
<width>4</width>
</LineStyle>
<PolyStyle>
<color>7f00ff00</color>
</PolyStyle>
</Style>
<Placemark>
<name>My Drone Flight</name>
<description>Stephan's Drone Flight</description>
<styleUrl>#redLine</styleUrl>
<LineString>
<altitudeMode>absolute</altitudeMode>
<coordinates>
long,lat,height
</coordinates>
</LineString>
</Placemark>
</Document>
</kml>
garnish as required...
the reason for some of the flight being missing is because this example was on the side of a mountain and Google's elevation model is not perfect so appears if drone has gone sub terranean
