<?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: Split shapefile into smaller shapefiles using Python in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/split-shapefile-into-smaller-shapefiles-using/m-p/618845#M20547</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For some reason, ArcMap is crashing when I try to export from the shapefile into a file geodatabase feature class. So I guess I'm going to have to stick with working from the shapefile. Also, I'd like to just split it up based on a number of records (no particular outcome other than breaking the shapefile up into smaller shapefiles (or feature classes)). &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Feb 2016 19:55:15 GMT</pubDate>
    <dc:creator>DavidBarry1</dc:creator>
    <dc:date>2016-02-23T19:55:15Z</dc:date>
    <item>
      <title>Split shapefile into smaller shapefiles using Python</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/split-shapefile-into-smaller-shapefiles-using/m-p/618843#M20545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a way I can take a large shapefile and split it into several smaller shapefiles using Python? My point shapefile has about 62,000 records and I'm trying to spatially join it to a line feature class, but it's taking forever. I'm thinking if I was able to split it up that I could spatially join each "mini" shapefile and get through the process faster. Any thoughts would be greatly appreciated. Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2016 19:03:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/split-shapefile-into-smaller-shapefiles-using/m-p/618843#M20545</guid>
      <dc:creator>DavidBarry1</dc:creator>
      <dc:date>2016-02-23T19:03:09Z</dc:date>
    </item>
    <item>
      <title>Re: Split shapefile into smaller shapefiles using Python</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/split-shapefile-into-smaller-shapefiles-using/m-p/618844#M20546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure you can, no problem, but maybe you want to test with a different format first. Have you tried loading your data into a File Geodatabase? This format may result in faster joins. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To split into shapefile into different featureclasses, how do you want to split them up, based on a spatial characteristics of simply taking a # number of records and writing them to a new featureclass?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2016 19:11:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/split-shapefile-into-smaller-shapefiles-using/m-p/618844#M20546</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2016-02-23T19:11:01Z</dc:date>
    </item>
    <item>
      <title>Re: Split shapefile into smaller shapefiles using Python</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/split-shapefile-into-smaller-shapefiles-using/m-p/618845#M20547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For some reason, ArcMap is crashing when I try to export from the shapefile into a file geodatabase feature class. So I guess I'm going to have to stick with working from the shapefile. Also, I'd like to just split it up based on a number of records (no particular outcome other than breaking the shapefile up into smaller shapefiles (or feature classes)). &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2016 19:55:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/split-shapefile-into-smaller-shapefiles-using/m-p/618845#M20547</guid>
      <dc:creator>DavidBarry1</dc:creator>
      <dc:date>2016-02-23T19:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: Split shapefile into smaller shapefiles using Python</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/split-shapefile-into-smaller-shapefiles-using/m-p/618846#M20548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can split by attributes here &lt;A href="http://www.arcgis.com/home/item.html?id=15ca63aebb4647a4b07bc94f3d051da5" title="http://www.arcgis.com/home/item.html?id=15ca63aebb4647a4b07bc94f3d051da5"&gt;http://www.arcgis.com/home/item.html?id=15ca63aebb4647a4b07bc94f3d051da5&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2016 19:58:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/split-shapefile-into-smaller-shapefiles-using/m-p/618846#M20548</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-02-23T19:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: Split shapefile into smaller shapefiles using Python</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/split-shapefile-into-smaller-shapefiles-using/m-p/618847#M20549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Dan, I'll have a look at it!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2016 20:14:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/split-shapefile-into-smaller-shapefiles-using/m-p/618847#M20549</guid>
      <dc:creator>DavidBarry1</dc:creator>
      <dc:date>2016-02-23T20:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: Split shapefile into smaller shapefiles using Python</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/split-shapefile-into-smaller-shapefiles-using/m-p/1142720#M26184</link>
      <description>&lt;P&gt;dead link, and judging by his username he retired &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Feb 2022 17:10:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/split-shapefile-into-smaller-shapefiles-using/m-p/1142720#M26184</guid>
      <dc:creator>TroyFoster</dc:creator>
      <dc:date>2022-02-10T17:10:29Z</dc:date>
    </item>
  </channel>
</rss>

