- Messages
- 539
- Country

Is there a way to use Gdal_Rasterize to burn a single blendmask from multiple shapefiles?
I use
for my ortho scenery. It works great for one state, or even when I use QGIS to merge two state shapefiles into one. But at a border region where several states come together, the files get into the gigabyte range.
Can I use Gdal commands to accomplish this without overwriting everything?
I use
Code:
gdal_rasterize -burn 255 -burn 255 -burn 255 -tr 0.000010000000000 -0.000010000000000 -te -89.7500320 37.7499825 -89.4999720 38.0000225 -ot BYTE "path\to\shapefile" "path\to\blendmask"
Can I use Gdal commands to accomplish this without overwriting everything?