1

I am a beginner with Google Earth and would greatly appreciate it if anyone is able to help me out with my inquiry.

I have a KML file which opens fine in Google Earth (found here: KML File. It is a file containing a flight path, and I was hoping to export it to ArcMap in order to perform analysis on it.

When I am creating a layer file out of this KML and opening it in ArcMap, I only see the two Placemarks for origin and destination.

Is it possible to have the flight path show as well just like how it is shown in Google Earth?

Thank you in advance for the assistance.

Kindest regards, Saad

CodeMonkey
  • 22,825
  • 4
  • 35
  • 75

1 Answers1

0

I suspect that ArcMap doesn't support the "Google eXtension" namespace (gx:)

I don't see any reference to it in their online documentation

If that is the case, to display the track you will need to convert it to a LineString

To convert the gx:Track to a LineString, a quick search on google found RouteConverter, which works with a little manual effort.

original output of RouteConverter on a Google Maps API v3 page: http://www.geocodezip.com/geoxml3_test/v3_geoxml3_kmltest_linktoB.html?filename=http://www.geocodezip.com/geoxml3_test/FlightAware_AAL420_KDFW_CYYZ_20130312_ls.kml - on Google Maps

original output on a Google Maps API v3 page with the "Marks" folder removed: http://www.geocodezip.com/geoxml3_test/v3_geoxml3_kmltest_linktoB.html?filename=http://www.geocodezip.com/geoxml3_test/FlightAware_AAL420_KDFW_CYYZ_20130312_lsA.kml - on Google Maps

geocodezip
  • 158,664
  • 13
  • 220
  • 245
  • Hello, Thank you so much for the prompt response. Could you kindly let me know how I need to go about converting the KML file to a LineString (or direct me to where I can find this information)? I am a beginner so I apologize in advance for taking up your time for something that seems to be quite basic. – user2178210 Mar 17 '13 at 17:52
  • I don't do it often enough. I would probably use a macro in emacs. A quick search on google found [RouteConverter](http://routeconverter.com/), which looks promising. – geocodezip Mar 17 '13 at 18:52
  • Thank you so much for your time! I will take a look at this and let you know how it goes. Kindest regards, Saad – user2178210 Mar 17 '13 at 18:53
  • Looks like it works with a little less effort. See my updated answer. – geocodezip Mar 17 '13 at 19:09