<?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: How to convert csv to shapefile using arcpy ? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/how-to-convert-csv-to-shapefile-using-arcpy/m-p/29196#M2263</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks James....I am trying using the example in link you gave, but for some reason i am getting parsing error. I initially tried by substituting .dbf with .csv, but maybe some more tweaking needs be done.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Jan 2013 14:26:26 GMT</pubDate>
    <dc:creator>KushBhusal</dc:creator>
    <dc:date>2013-01-29T14:26:26Z</dc:date>
    <item>
      <title>How to convert csv to shapefile using arcpy ?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-convert-csv-to-shapefile-using-arcpy/m-p/29194#M2261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I want to convert csv files to shapefile using arcpy. I've got hundreds of csvs (with multiple fields) that i need to convert. There are two different lat long columns(normal lat long and delayed lat long) within the csv files and i want to use delayed lat long values. Trying to do this in arcpy but haven't been successful so far.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any help will be appreciated !&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2013 13:51:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-convert-csv-to-shapefile-using-arcpy/m-p/29194#M2261</guid>
      <dc:creator>KushBhusal</dc:creator>
      <dc:date>2013-01-29T13:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert csv to shapefile using arcpy ?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-convert-csv-to-shapefile-using-arcpy/m-p/29195#M2262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can start here, but I am not sure if you will need additional tweaks for the .csv format (this page shows ex with .dbf):&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//00170000006z000000"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//00170000006z000000&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2013 14:02:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-convert-csv-to-shapefile-using-arcpy/m-p/29195#M2262</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2013-01-29T14:02:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert csv to shapefile using arcpy ?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-convert-csv-to-shapefile-using-arcpy/m-p/29196#M2263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks James....I am trying using the example in link you gave, but for some reason i am getting parsing error. I initially tried by substituting .dbf with .csv, but maybe some more tweaking needs be done.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2013 14:26:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-convert-csv-to-shapefile-using-arcpy/m-p/29196#M2263</guid>
      <dc:creator>KushBhusal</dc:creator>
      <dc:date>2013-01-29T14:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert csv to shapefile using arcpy ?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-convert-csv-to-shapefile-using-arcpy/m-p/29197#M2264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Oh, this is my bad.&amp;nbsp; It has been a while since I implemented this, but I incorporated a 3rd party Python library to setup a table with a csv source -- this maybe a bit much for your requirements.&amp;nbsp; How about if you invoke Table To Table to bring in the csv into a .gdb (like in your scratch workspace or something), then use that table in the MakeXYEventLayer method.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Import .csv into gdb:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//001200000027000000"&gt;http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//001200000027000000&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;MakeXYEventLayer:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//00170000006z000000"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//00170000006z000000&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sorry I don't have a specific example for you, maybe someone else can post up their solution. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;James&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2013 16:16:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-convert-csv-to-shapefile-using-arcpy/m-p/29197#M2264</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2013-01-29T16:16:15Z</dc:date>
    </item>
  </channel>
</rss>

