Hallo Christian,
da mein GPS-Logger leider mitten im Flug aufgehört hat, habe ich mir das CSV von "flightradar24" geladen, um damit die fehlenden Teile ergänzen zu können. Dummerweise hat das File aber einen etwas anderen Aufbau (speziell, was die Koordinaten angeht).
Nachfolgend habe ich mal die Kopfzeile und eine Parameterzeile eingefügt. Bei Bedarf kann ich dir auch ein komplettes CSV mailen.
Evtl. kannst du ja die kritischen Spalten (Position und UTC) in deren Formatierung auch unterstützen.
Code:
Timestamp,UTC,Callsign,Position,Altitude,Speed,Direction
1532855802,2018-07-29T09:16:42Z,SAS54A,"48.686054,9.297542",32925,465,11
Laut Homepage ist der Aufbau folgender:
Quote:CSV files each have six (6) columns containing time, position, and movement information. The first column in each CSV file is a timestamp listed Unix Epoch time. The timestamp counts the number of seconds from the beginning of the Unix Epoch on 1 January 1970 (UTC). This formatting is very useful for computers and helps us ensure accuracy in our data, but to be more useful to humans, a small conversion is required.
To convert the Unix Epoch time stamp into a Date + UTC format, apply the following formula, where A2 is cell containing the Epoch Unix timestamp:
Quote:=(((A2/60)/60)/24)+DATE(1970,1,1)
The result will then need to be converted the result to a Date + Time display format in your spreadsheet application.
The next column in the file is the flight’s [b]Callsign[/b] which contains the three-character ICAO airline identifier. The third column contains [b]Position[/b] data, reported as latitude and longitude. The final three columns are [b]Altitude[/b] (in feet), [b]Speed[/b] (Ground Speed in Knots), and [b]Direction[/b] (heading).
Das ebenfalls downloadbare KML ist bei mir nicht wirklich brauchbar. Es besteht aus diversen Route-Segmenten, die im RC als einzelne Teile angezeigt werden. Evtl. fehlen dazwischen Daten, so dass die immer wieder einen neuen Abschnitt begonnen haben.
Danke & Gruß
Thomas