Reduce number of points in a shapefile

4472
2
05-05-2014 09:34 AM
BruceCampbell
New Contributor
I have a shapefile of land surface altitude points created from a DEM. The problem is, there are about 7.6 million points and I need to move it out of ARCMap and to another program and it's too large for the second program. Is there a way to select every 10th point in the shapefile and create another shapefile?
0 Kudos
2 Replies
BondHarper
Occasional Contributor II
If you just want to select every 10th point regardless of its spatial relation, you could just use the select by attributes with a unique id field:

mod("FID",10)=0

where FID is your sequential integer id field
0 Kudos
BruceCampbell
New Contributor
Worked very nicely - thanks!
0 Kudos