[GRASS-user] converting .dgn to individual vector layers

hi all,
I have a .dgn file with different layers in it.
I wish to seperate them into different point , line and polygon layers and load each of these
seperately in the grass.
Can I do it
thanks
nishith

nishith datta wrote:

I have a .dgn file with different layers in it.
I wish to seperate them into different point , line and polygon layers
and load each of these seperately in the grass.

v.in.ogr to import, use the type= option to select feature type to
import. Or load all, then use v.extract to pick out point, line and
polygon layers. (v.extract requires features to extract have category
values, use v.category for that if they are missing)

Hamish