I have multiple layers (multi-point, multipart polygon, multipart lines). I want to create a hidden coverage layer based on all those to create an atlas of my QGIS project.
Obviously, I can't easily combine different geometries in one layer.
I ended up with the following workflow:
- convert polygons to lines
- convert lines to points
- convert multi-points to single points
- merge all single-point layers
- create multipoint layer based on shared attribute (i.e., object number)
- use as hidden coverage layer
Since I will have to do that again in the near future, and this was a hell lot of manual work (and many layers): how would you do that properly?
Disclaimer: I read several Q/As which are somewhat related, but nothing fits, really. Most seem to deal with displaying multiple layers, not combining multiple layers in one coverage layer. Also, not being able to paste multi-part geometries in a single-part layer seems to be a currently persistent bug specific to Windows.