<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Using python for Google Earth in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/using-python-for-google-earth/m-p/17974#M1408</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Kinda off topic for ArcGis, but does anyone know where I can find some info on how to use python to auto-generate GE maps?&amp;nbsp; Essentially I want to load a KML (that I will generate in ArcMap) into GE, and then save it as an image.&amp;nbsp; Thanks Guys!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 21 Jan 2012 13:57:56 GMT</pubDate>
    <dc:creator>CharlesGant</dc:creator>
    <dc:date>2012-01-21T13:57:56Z</dc:date>
    <item>
      <title>Using python for Google Earth</title>
      <link>https://community.esri.com/t5/python-questions/using-python-for-google-earth/m-p/17974#M1408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Kinda off topic for ArcGis, but does anyone know where I can find some info on how to use python to auto-generate GE maps?&amp;nbsp; Essentially I want to load a KML (that I will generate in ArcMap) into GE, and then save it as an image.&amp;nbsp; Thanks Guys!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Jan 2012 13:57:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-python-for-google-earth/m-p/17974#M1408</guid>
      <dc:creator>CharlesGant</dc:creator>
      <dc:date>2012-01-21T13:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: Using python for Google Earth</title>
      <link>https://community.esri.com/t5/python-questions/using-python-for-google-earth/m-p/17975#M1409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You don't need Python to do this, it is in the normal set of Arc tools... &lt;/SPAN&gt;&lt;STRONG&gt;ArcToolbox &lt;/STRONG&gt;&lt;SPAN&gt;&amp;gt; &lt;/SPAN&gt;&lt;STRONG&gt;Conversion Tools &lt;/STRONG&gt;&lt;SPAN&gt;&amp;gt; &lt;/SPAN&gt;&lt;STRONG&gt;To KML&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If, for some reason, you wanted to avoid using the Arc tools, KML is actually pretty easy to make - it's basically a text file with a defined syntax. For example a simple point can be made with the following (from &lt;/SPAN&gt;&lt;A href="http://code.google.com/apis/kml/documentation/kml_tut.html"&gt;Google KML Tutorial&lt;/A&gt;&lt;SPAN&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[HTML]&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;lt;kml xmlns="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.opengis.net/kml/2.2" rel="nofollow" target="_blank"&gt;http://www.opengis.net/kml/2.2&lt;/A&gt;&lt;SPAN&gt;"&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;lt;Placemark&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;name&amp;gt;Simple placemark&amp;lt;/name&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;description&amp;gt;Attached to the ground. Intelligently places itself &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at the height of the underlying terrain.&amp;lt;/description&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Point&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;coordinates&amp;gt;-122.0822035425683,37.42228990140251,0&amp;lt;/coordinates&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Point&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;lt;/Placemark&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/kml&amp;gt;[/HTML]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;All you need to do is save it to a text file, give it a .kml extension and GE can load it... You could easily automate the creation of a file like this in Python (iterate over a set of features, getting the coordinates and an attribute for the label).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However, getting symbology to work in GE might not be easy, which is why the Arc tools are nice...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2012 23:26:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-python-for-google-earth/m-p/17975#M1409</guid>
      <dc:creator>StacyRendall1</dc:creator>
      <dc:date>2012-01-24T23:26:37Z</dc:date>
    </item>
  </channel>
</rss>

