Is there a proper way of polygonizing a continuous raster so that every cell becomes a polygon? What I do now is make the cells differ enough so that the algorithm makes different polygons of them. for example:
raster1 ^ 8 -> raster2
polygonize raster2 -> vector1
This is however not a guaranteed-to-work approach. Anyone has any ideas on a better approach?