• Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. But having all questions about FS2020 in one forum becomes a bit messy. So therefore we would like to ask you all to use the following guidelines when posting your questions:

    • Tag FS2020 specific questions with the MSFS2020 tag.
    • Questions about making 3D assets can be posted in the 3D asset design forum. Either post them in the subforum of the modelling tool you use or in the general forum if they are general.
    • Questions about aircraft design can be posted in the Aircraft design forum
    • Questions about airport design can be posted in the FS2020 airport design forum. Once airport development tools have been updated for FS2020 you can post tool speciifc questions in the subforums of those tools as well of course.
    • Questions about terrain design can be posted in the FS2020 terrain design forum.
    • Questions about SimConnect can be posted in the SimConnect forum.

    Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.

    By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.

can a flight track KML file be converted to scenery?

  • Thread starter Thread starter B21
  • Start date Start date

B21

Messages
149
Country
unitedkingdom
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:
google_earth.jpg

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
 
I had a similar query from a friend at an airspace company- They wanted to be able to visualise radar tracks of approaching aircraft and compare them to the most efficient approach and then show them to clients.

I couldnt come up with a solution in FSX/ESP that actually used 'lines'...the best I could manage was using a series of 'points' like a crumb trail.
 
Back
Top