1 / 10

GoogleEarth

GoogleEarth. Keyhole Markup Language (KML) Based on Extensible Markup Language (XML) KML files can come from Internet servers or files on your computer Much more flexible, and complicated than Shapefiles Documented at: http://code.google.com/apis/kml/ Or type “KML” into Google. 3D Analyst.

eros
Download Presentation

GoogleEarth

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. GoogleEarth • Keyhole Markup Language (KML) • Based on Extensible Markup Language (XML) • KML files can come from Internet servers or files on your computer • Much more flexible, and complicated than Shapefiles • Documented at: • http://code.google.com/apis/kml/ • Or type “KML” into Google

  2. 3D Analyst • ArcToolbox -> Conversion Tools -> To KML • Layer to KML • Converts one layer to a KMZ file • Map to KML • Converts an entire map document (“.mxd”) to a KMZ file • KMZ is a “zipped” KML

  3. XML <tag attribute=‘value’/> <tag> Content </tag> <tag> <nestedtag/> </tag

  4. Simple KML <?xml version="1.0" encoding="UTF-8"?> <kml xmlns="http://www.opengis.net/kml/2.2"> <Document> <Placemark> <name>Simple placemark</name> <description>Description</description> <Point> <coordinates> -122.0822035425683, 37.42228990140251, 0 </coordinates> </Point> </Placemark> </Document> </kml>

More Related