<?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: Bulk conversion of dwf files to csv in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/bulk-conversion-of-dwf-files-to-csv/m-p/9234365#M117889</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;FONT color="#333399"&gt;&amp;gt;&amp;gt; I would want each x and y coordinate pair for the polyline &lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;FONT color="#333399"&gt;&amp;gt;&amp;gt; to be separate records in the csv&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;That means it does not follow a CSV syntax, it has not a column structure, you are writing your own type of ASCII file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Which API/development languages do you know?&lt;/P&gt;
&lt;P&gt;AutoCAD supports primary LISP, C#, VB.NET, VBA, C++ and all languages that can access COM/ActiveX&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- alfred -&lt;/P&gt;</description>
    <pubDate>Tue, 07 Jan 2020 00:07:38 GMT</pubDate>
    <dc:creator>Alfred.NESWADBA</dc:creator>
    <dc:date>2020-01-07T00:07:38Z</dc:date>
    <item>
      <title>Bulk conversion of dwf files to csv</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/bulk-conversion-of-dwf-files-to-csv/m-p/9234097#M117884</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a large number of 2D dwf files that I would like to convert to csv. I'd like to convert all points, lines, arcs, polylines, and text to csv with corresponding coordinates. I don't want to open each file individually in Autocad, but would like to run a program that will do this for a large number of files at once. What software or free script would you recommend?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2020 21:08:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/bulk-conversion-of-dwf-files-to-csv/m-p/9234097#M117884</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-06T21:08:30Z</dc:date>
    </item>
    <item>
      <title>Re: Bulk conversion of dwf files to csv</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/bulk-conversion-of-dwf-files-to-csv/m-p/9234182#M117885</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#333399"&gt;&lt;EM&gt;&amp;gt;&amp;gt; I have a large number of 2D dwf files that I would like to convert to csv&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;DWF is not a public documented fileformat and so no software or api has an option to export data from geometry.&lt;/P&gt;
&lt;P&gt;Try to get the source file from which the dwf was created to get access to the geometry.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- alfred -&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2020 21:50:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/bulk-conversion-of-dwf-files-to-csv/m-p/9234182#M117885</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2020-01-06T21:50:56Z</dc:date>
    </item>
    <item>
      <title>Re: Bulk conversion of dwf files to csv</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/bulk-conversion-of-dwf-files-to-csv/m-p/9234239#M117886</link>
      <description>&lt;P&gt;Thank you. If I have the cad files, is there a way to bulk convert the geometric data to csv?&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2020 22:24:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/bulk-conversion-of-dwf-files-to-csv/m-p/9234239#M117886</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-06T22:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: Bulk conversion of dwf files to csv</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/bulk-conversion-of-dwf-files-to-csv/m-p/9234269#M117887</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;FONT color="#333399"&gt;&amp;gt;&amp;gt; is there a way to bulk convert the geometric data to csv?&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Not out of the box, but AutoCAD has a lot of API to export the data you like to have.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But you should think first if CSV is the best format to save geometry ... think about a polyline (as one line inside your csv) having e.g. 5000 vertices, each vertex has x and y and z value, each value could have 10 digits which means one line is 5000 * 3 * 10 = 15000 characters long (plus a lot of delimiters) ... what do you want to do with that string?&lt;/P&gt;
&lt;P&gt;Excel can't open such a line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- alfred -&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2020 22:44:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/bulk-conversion-of-dwf-files-to-csv/m-p/9234269#M117887</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2020-01-06T22:44:00Z</dc:date>
    </item>
    <item>
      <title>Re: Bulk conversion of dwf files to csv</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/bulk-conversion-of-dwf-files-to-csv/m-p/9234289#M117888</link>
      <description>&lt;P&gt;I would want each x and y coordinate pair for the polyline to be separate records in the csv. So, for each line segment in the polyline, there would be two rows of data, each one with an x coordinate and a y coordinate that are separated by the delimiter.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2020 22:57:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/bulk-conversion-of-dwf-files-to-csv/m-p/9234289#M117888</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-06T22:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: Bulk conversion of dwf files to csv</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/bulk-conversion-of-dwf-files-to-csv/m-p/9234365#M117889</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;FONT color="#333399"&gt;&amp;gt;&amp;gt; I would want each x and y coordinate pair for the polyline &lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;FONT color="#333399"&gt;&amp;gt;&amp;gt; to be separate records in the csv&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;That means it does not follow a CSV syntax, it has not a column structure, you are writing your own type of ASCII file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Which API/development languages do you know?&lt;/P&gt;
&lt;P&gt;AutoCAD supports primary LISP, C#, VB.NET, VBA, C++ and all languages that can access COM/ActiveX&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- alfred -&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2020 00:07:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/bulk-conversion-of-dwf-files-to-csv/m-p/9234365#M117889</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2020-01-07T00:07:38Z</dc:date>
    </item>
    <item>
      <title>Re: Bulk conversion of dwf files to csv</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/bulk-conversion-of-dwf-files-to-csv/m-p/9236034#M117890</link>
      <description>&lt;P&gt;If possible, I would prefer Python. I think I will have easiest access to the dwg files.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2020 17:54:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/bulk-conversion-of-dwf-files-to-csv/m-p/9236034#M117890</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-07T17:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: Bulk conversion of dwf files to csv</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/bulk-conversion-of-dwf-files-to-csv/m-p/9236056#M117891</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;well, I'm not familiar with Python, but looking to these search results it is possible &lt;A href="https://www.google.com/search?client=firefox-b-d&amp;amp;q=python+access+autocad" target="_blank" rel="noopener"&gt;&amp;gt;&amp;gt;&amp;gt;click&amp;lt;&amp;lt;&amp;lt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Good luck,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- alfred -&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2020 18:00:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/bulk-conversion-of-dwf-files-to-csv/m-p/9236056#M117891</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2020-01-07T18:00:39Z</dc:date>
    </item>
  </channel>
</rss>

