Feature request #2989

Updated by Jürgen Fischer almost 7 years ago

QGIS already reads DGN files (at least v7), mixing all geometry types in one single layer.



One can then filter each geometry type by querying the dgn layer. For example, to filter all lines you can use this query:



"Type" IN ('3','4','12','14','16','15')



The layer will have only lines after this query is applyed. To know which type codes correspond to each geometry type you can lookup on certain web pages, like:



http://www.gdal.org/ogr/drv_dgn.html



http://www.gisdevelopment.net/technology/gis/techgi0011.htm





I attached an example dgn file where you can exercise this kind of filtering.



You can also by this means, get all text elements:



"Type" = '17'



Note that QGIS does not reset the symbology according to the query results. So the default line symbology is kept and nothing is visible since the layer now holds only points. To workaround this limitation, you have only to change the symbology type to "Categorized", and then back to "Single Symbol". QGIS will pick up on the geometry type and propose the default point symbol. At this stage you can see the text points.



Since all DGN attributes that are captured by OGR are available to QGIS you can also show the texts by labeling the points.



Finally, you can export each geometry type to separate shapefiles. Later on, you can work these shapefiles and further filter elements by level (the dgn's equivalent to dwg's layers).



This process allows QGIS to work with CAD data directly, without requiring external tools, like ogr2ogr. Extending this support to dwg would be a breakthrough!

Back