- Messages
- 149
- Country

Using gpsvisualizer.com I can convert an FSX flight log (IGC) file into a KML file, i.e. via
http://www.gpsvisualizer.com/map?form=googleearth
Which looks like this in Google Earth:
The actual KMZ file is here:
http://carrier.csi.cam.ac.uk/forsterlewis/soaring/sim/fsx/dev/downloads/b21_mifflin_day3_fail.kmz
Simply put, the flight track is a series of Placemark entries, each with a LineString:
Can FSX KML convert that to FSX scenery ?
Thanks,
B21
http://www.gpsvisualizer.com/map?form=googleearth
Which looks like this in Google Earth:
The actual KMZ file is here:
http://carrier.csi.cam.ac.uk/forsterlewis/soaring/sim/fsx/dev/downloads/b21_mifflin_day3_fail.kmz
Simply put, the flight track is a series of Placemark entries, each with a LineString:
Code:
<Folder>
<name>Tracks</name>
<Folder>
<name><![CDATA[B21_2008-06-03_1919]]></name>
<Placemark>
<name><![CDATA[<span style="color:#004DE6">trkpt 1</span>]]></name>
<LineString>
<altitudeMode>absolute</altitudeMode>
<coordinates>-77.640650,40.675783,941.000 -77.639067,40.676917,940.000 </coordinates>
<extrude>1</extrude>
<tessellate>0</tessellate>
</LineString>
<Style>
<LineStyle>
<color>FFE64D00</color>
<width>4</width>
</LineStyle>
<PolyStyle>
<color>66E64D00</color>
</PolyStyle>
</Style>
</Placemark>
<Placemark>
...
Can FSX KML convert that to FSX scenery ?
Thanks,
B21
