I don't know why does gdalbuildvrt not allow:
- Unreferenced images
- Rotated images
- South up images
Could someone throw some light?
Many thanks in advance
|
I don't know why does gdalbuildvrt not allow:
Could someone throw some light? Many thanks in advance |
|||
|
|
|
Because the utilities output is very simple, meant to be a basic mosaic of the easy case for a set of (possibly sparse) tiles. Merging images like this needs some kind of manipulation or warping. |
|||||||
|
|
Well, the answer is that if you want to stack or mosaic a bunch of images, you need to have a common reference frame. It would be quite complicated to mosaic data that are in UTM and data that are in a different projection. You would need to reproject into one of the two reference frames, so that you know where one raster lies with respect to the other. One way to get around this is to build VRTs of the individual files (it's just an XML file, see the reference for the VRT format). There you can add a GeoTransform (to solve the unreferenced image issue, as well as dealing with rotation using an affine transformation), and if needs be, you may even reproject stuff (or assign projections to them). |
|||
|