<?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: Point Shapefile to Multiple Points in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/point-shapefile-to-multiple-points/m-p/99158#M5755</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;thank you very much for this version!!! it is still very time consuming (takes about 5sec per point... i have about 1000000 points &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;best regards, riccardo&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Mar 2011 08:40:08 GMT</pubDate>
    <dc:creator>RiccardoKlinger1</dc:creator>
    <dc:date>2011-03-10T08:40:08Z</dc:date>
    <item>
      <title>Point Shapefile to Multiple Points</title>
      <link>https://community.esri.com/t5/data-management-questions/point-shapefile-to-multiple-points/m-p/99156#M5753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello Everyone,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;for multiple viewshed calculation i need my point shapefile divided into several shapefiles (each point should be one shapefile) &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I was trying to use this ressource : &lt;/SPAN&gt;&lt;A href="http://arcscripts.esri.com/details.asp?dbid=14127"&gt;http://arcscripts.esri.com/details.asp?dbid=14127&lt;/A&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;but this is not working maybe due to at least 100.000 points...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;then i was trying : &lt;/SPAN&gt;&lt;A href="http://www.umesc.usgs.gov/management/dss/split_by_attribute_tool.html"&gt;http://www.umesc.usgs.gov/management/dss/split_by_attribute_tool.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;which takes nearly an hour for 1000 point shape files to create...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;any other suggestions?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm using WIN 7, arcgis 9.3&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Jan 2011 09:33:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/point-shapefile-to-multiple-points/m-p/99156#M5753</guid>
      <dc:creator>RiccardoKlinger1</dc:creator>
      <dc:date>2011-01-23T09:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: Point Shapefile to Multiple Points</title>
      <link>https://community.esri.com/t5/data-management-questions/point-shapefile-to-multiple-points/m-p/99157#M5754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I see this was posted over a month ago, but here is what I would do:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Add a new field (number)and populate with an incremental number 1,2,3, etc... using:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;Static rec As Long 
Dim pStart As Long 
Dim pInterval As Long 
 
' adjust start value if you want it to
' start at a value other than 1. 
' For example, 1000. 
' ====================================

pStart = 1 

' adjust interval value if you want it to
' increment at a value other than 1. 
' For example, 2. 
' =======================================

pInterval = 1 
 
If (rec = 0) Then 
rec = pStart 
Else 
rec = rec + pInterval 
End If
__esri_field_calculator_splitter__
rec&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Then run this script in python:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt; #import modules
import arcgisscripting

# Create geoprocessor object
gp = arcgisscripting.create (9.3)
gp.overwriteoutput = True
gp.Workspace = r"C:\...location of points and output points"

# Access parameters
Points = name of points feature class

#where n is the total number of points in the feature class +1
#where number is the name of the field you added above
for i in range(1,n,1):
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.Select_analysis (Points, "Output" + str(i), '"number" = ' + str(i))
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:10:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/point-shapefile-to-multiple-points/m-p/99157#M5754</guid>
      <dc:creator>LornaMurison</dc:creator>
      <dc:date>2021-12-11T06:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: Point Shapefile to Multiple Points</title>
      <link>https://community.esri.com/t5/data-management-questions/point-shapefile-to-multiple-points/m-p/99158#M5755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;thank you very much for this version!!! it is still very time consuming (takes about 5sec per point... i have about 1000000 points &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;best regards, riccardo&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2011 08:40:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/point-shapefile-to-multiple-points/m-p/99158#M5755</guid>
      <dc:creator>RiccardoKlinger1</dc:creator>
      <dc:date>2011-03-10T08:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: Point Shapefile to Multiple Points</title>
      <link>https://community.esri.com/t5/data-management-questions/point-shapefile-to-multiple-points/m-p/99159#M5756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;For all the guys using python instead of the gp:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1442401 is the nmber of points, and POINTID is the pointidentifier!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;pfad="C:\\Users\\Riccardo Klinger\\Documents\\WD_Vis\\points\\points_all\\"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;for i in range(1,1442401,1):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; clause= "POINTID = " + str(i)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.SelectLayerByAttribute_management("points_dem","NEW_SELECTION",clause)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.CopyFeatures_management("points_dem",pfad+"output"+str(i)+".shp")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I see this was posted over a month ago, but here is what I would do:&lt;BR /&gt;Add a new field (number)and populate with an incremental number 1,2,3, etc... using:&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;Static rec As Long 
Dim pStart As Long 
Dim pInterval As Long 
 
' adjust start value if you want it to
' start at a value other than 1. 
' For example, 1000. 
' ====================================

pStart = 1 

' adjust interval value if you want it to
' increment at a value other than 1. 
' For example, 2. 
' =======================================

pInterval = 1 
 
If (rec = 0) Then 
rec = pStart 
Else 
rec = rec + pInterval 
End If
__esri_field_calculator_splitter__
rec&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;Then run this script in python:&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt; #import modules
import arcgisscripting

# Create geoprocessor object
gp = arcgisscripting.create (9.3)
gp.overwriteoutput = True
gp.Workspace = r"C:\...location of points and output points"

# Access parameters
Points = name of points feature class

#where n is the total number of points in the feature class +1
#where number is the name of the field you added above
for i in range(1,n,1):
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.Select_analysis (Points, "Output" + str(i), '"number" = ' + str(i))
&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:10:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/point-shapefile-to-multiple-points/m-p/99159#M5756</guid>
      <dc:creator>RiccardoKlinger1</dc:creator>
      <dc:date>2021-12-11T06:10:50Z</dc:date>
    </item>
  </channel>
</rss>

