Hi Margherita.<br><br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I have a vector of polygons and i want to create a vector of points with<br>
the centroids of the polygons, with a connected table showing their<br>
coordinates. Which is the simplest way to do that on G7?<br>
<br></blockquote><div><br>In GRASS 6.4.*:<br>-- extract centroids from polygon map<br>v.extract in=poly out=centr type=centroid<br>-- if needed convert centroids to points<br>v.type in=centr out=centr_pts type=centroid,point<br>
-- add attribute table to points<br>v.db.addtable  centr_pts col="x double,y double,z double"<br>-- insert coords in table<br>v.to.db TMP_centr_pts option=coor col=x,y,z<br><br>I think in GRASS 7.0 it will be similar.<br>
</div></div><br>