Is there any way to produce a set of evenly spaced vector points in GRASS?
--j
--
Jonathan A. Greenberg, PhD
NRC Research Associate
NASA Ames Research Center
MS 242-4
Moffett Field, CA 94035-1000
650-604-5896
AIM: jgrn307
MSN: jgrn307@hotmail.com
> Is there any way to produce a set of evenly spaced vector points in
> GRASS?
Trevor:
v.mkgrid will generate a grid with centroids and boundaries.
you could extract out the centroids or corners using v.extract
Perhaps others know an easier way.
Dylan:
there is a way to convert vector lines into points at a regular
interval.. it is called v.to.points
another trick is to set the region at the target size and ns,ew
resolution with g.region, then make a raster map with "r.mapcalc one=1"
and then use 'r.to.vect feature=point' to convert each raster cell to a
vector point, leaving you with a grid of points.