[GRASS-user] d.vect without centroid icon

   When I overlay a raster map with the vector watershed boundaries the
centroid of that vector map is displayed as a small 'x.' Is there a way to
remove that centroid from the display?

Thanks,

Rich

On Wednesday 10 February 2010, Rich Shepard wrote:

   When I overlay a raster map with the vector watershed boundaries the
centroid of that vector map is displayed as a small 'x.' Is there a way to
remove that centroid from the display?

Thanks,

Rich
_______________________________________________
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user

try some permutation of these

# just the lines
d.vect yourvector type=boundary

# filled polygons, without centroids
d.vect yourvector type=area

Cheers,
Dylan

--
Dylan Beaudette
Soil Resource Laboratory
http://casoilresource.lawr.ucdavis.edu/
University of California at Davis
530.754.7341

If you are displaying using command line, d.vect manual tells us about
options display and type. Not sure which to use but I believe one
should do what you want.

If you are using the GUI, the vector properties will let you turn of
centroids and do other cool stuff.

On Wed, Feb 10, 2010 at 10:27 PM, Rich Shepard <rshepard@appl-ecosys.com> wrote:

When I overlay a raster map with the vector watershed boundaries the
centroid of that vector map is displayed as a small 'x.' Is there a way to
remove that centroid from the display?

Thanks,

Rich
_______________________________________________
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user

On Wed, 10 Feb 2010, Dylan Beaudette wrote:

try some permutation of these

# just the lines
d.vect yourvector type=boundary

Dylan,

   I should have seen that myself. What I was using was
d.vect basin fcolor=none color=red width=2

Now I'll add the type key.

   It makes a difference when I build a ps.map script so I have impressive
images in my LaTeX report.

Much thanks,

Rich