I am writing an application to download vector form maps / files using gdal / ogr and display them on a gui created using Qt. I am new to working with vector files, I cannot decide how to visualize them in the graphical interface. The few approaches that come to my mind: - convert vector files to raster and display them as raster. - To draw each figure in a vector file one by one (I donβt know how to do this, I donβt even know if this is possible with GDAL / OGR, or how difficult it is, because in my case vector files can be very complicated )
The decision on how to visualize vector files is very important for me, because after displaying vector files I need to support some additional functions, such as changing the projection, interactive selection, georeference, etc.
Can anyone who worked on the vector / gis material tell me how this is usually done and which Qt widget is used to display such data.
source share