<?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 Re: Python Script: Convert KML to AutoCAD(DWG\DXF) in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/python-script-convert-kml-to-autocad-dwg-dxf/m-p/1704851#M75259</link>
    <description>&lt;P&gt;If your primary goal is simply liberating your team from having to ask you for conversions, an even faster route than managing Python environments on their machines is using a web tool.&lt;/P&gt;&lt;P&gt;You can direct them to &lt;STRONG&gt;&lt;A href="https://maparz.com" target="_blank" rel="noopener"&gt;maparz.com&lt;/A&gt;&lt;/STRONG&gt;. It is a completely free, browser-based online spatial converter that specifically targets &lt;STRONG&gt;KML to DXF/DWG&lt;/STRONG&gt; conversion. It automatically transforms the KML geometric schema and reprojects coordinates silently in the background, rendering a perfectly clean AutoCAD file instantly without requiring a single line of code or software installations on their end.&lt;/P&gt;</description>
    <pubDate>Thu, 28 May 2026 10:57:40 GMT</pubDate>
    <dc:creator>FarhatAbbas</dc:creator>
    <dc:date>2026-05-28T10:57:40Z</dc:date>
    <item>
      <title>Python Script: Convert KML to AutoCAD(DWG\DXF)</title>
      <link>https://community.esri.com/t5/python-questions/python-script-convert-kml-to-autocad-dwg-dxf/m-p/509862#M40046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've searched online looking for an open source tool, script or source code. I need a stand alone Python script that can convert KML files to AutoCAD (DWG\DXF) without the reliance on ArcGIS. The reason is that our colleagues need to be able to convert KML files to AutoCAD (DWG\DXF) without have to contact us each time they need a KML file converted to AutoCAD (DWG\DXF). Any help to achieve the following will be appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Aug 2015 22:41:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-convert-kml-to-autocad-dwg-dxf/m-p/509862#M40046</guid>
      <dc:creator>PeterWilson</dc:creator>
      <dc:date>2015-08-31T22:41:05Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script: Convert KML to AutoCAD(DWG\DXF)</title>
      <link>https://community.esri.com/t5/python-questions/python-script-convert-kml-to-autocad-dwg-dxf/m-p/509863#M40047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're probably best trying this question elsewhere, since this is a support forum for Python in the context of ArcGIS. That said, if you need the exact implemention that ArcGIS provides, you could set up a server instance that does the conversion. If you're not afraid of the command line, you can also try your luck with ogr2ogr, which has a somewhat limited &lt;A href="http://www.gdal.org/drv_dxf.html"&gt;DXF AutoCAD 2000 driver&lt;/A&gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;ogr2ogr -f "DXF" destination.dxf source.kml&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both formats are complicated and have non-overlapping featuresets, so expect this to be a lossy translation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2015 17:18:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-convert-kml-to-autocad-dwg-dxf/m-p/509863#M40047</guid>
      <dc:creator>ShaunWalbridge</dc:creator>
      <dc:date>2015-09-08T17:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script: Convert KML to AutoCAD(DWG\DXF)</title>
      <link>https://community.esri.com/t5/python-questions/python-script-convert-kml-to-autocad-dwg-dxf/m-p/509864#M40048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Online you can get this free&lt;/P&gt;&lt;P&gt;&lt;A href="http://kmltools.appspot.com/kml2dxf" title="http://kmltools.appspot.com/kml2dxf"&gt;Free KML Tools - KML to DXF Convertor&lt;/A&gt;&lt;/P&gt;&lt;P&gt;and a standalone tool here&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.zonums.com/kml2cad.html" title="http://www.zonums.com/kml2cad.html"&gt;kml2cad&lt;/A&gt;&lt;/P&gt;&lt;P&gt;and also okmap&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.okmap.org/en/okmapDesktopFeatures.aspx" title="http://www.okmap.org/en/okmapDesktopFeatures.aspx"&gt;OkMap Desktop - Features&lt;/A&gt;&lt;/P&gt;&lt;P&gt;without waisting time coding with pyhon&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take a look this usefool python tool if you want play&amp;nbsp; python code&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/opencolorado/OpenColorado-Tools-and-Utilities/blob/master/Scripts/ArcGIS/10.0/Python/PublishOpenDataset.py" title="https://github.com/opencolorado/OpenColorado-Tools-and-Utilities/blob/master/Scripts/ArcGIS/10.0/Python/PublishOpenDataset.py"&gt;OpenColorado-Tools-and-Utilities/PublishOpenDataset.py at master · opencolorado/OpenColorado-Tools-and-Utilities · GitHu…&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2015 17:31:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-convert-kml-to-autocad-dwg-dxf/m-p/509864#M40048</guid>
      <dc:creator>NICOLAPEDDIS</dc:creator>
      <dc:date>2015-09-08T17:31:43Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script: Convert KML to AutoCAD(DWG\DXF)</title>
      <link>https://community.esri.com/t5/python-questions/python-script-convert-kml-to-autocad-dwg-dxf/m-p/509865#M40049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nicola&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the following, much appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jan 2016 21:02:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-convert-kml-to-autocad-dwg-dxf/m-p/509865#M40049</guid>
      <dc:creator>PeterWilson</dc:creator>
      <dc:date>2016-01-12T21:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script: Convert KML to AutoCAD(DWG\DXF)</title>
      <link>https://community.esri.com/t5/python-questions/python-script-convert-kml-to-autocad-dwg-dxf/m-p/1704851#M75259</link>
      <description>&lt;P&gt;If your primary goal is simply liberating your team from having to ask you for conversions, an even faster route than managing Python environments on their machines is using a web tool.&lt;/P&gt;&lt;P&gt;You can direct them to &lt;STRONG&gt;&lt;A href="https://maparz.com" target="_blank" rel="noopener"&gt;maparz.com&lt;/A&gt;&lt;/STRONG&gt;. It is a completely free, browser-based online spatial converter that specifically targets &lt;STRONG&gt;KML to DXF/DWG&lt;/STRONG&gt; conversion. It automatically transforms the KML geometric schema and reprojects coordinates silently in the background, rendering a perfectly clean AutoCAD file instantly without requiring a single line of code or software installations on their end.&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2026 10:57:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-convert-kml-to-autocad-dwg-dxf/m-p/1704851#M75259</guid>
      <dc:creator>FarhatAbbas</dc:creator>
      <dc:date>2026-05-28T10:57:40Z</dc:date>
    </item>
  </channel>
</rss>

