Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Importer provides the possibility to update the whole tranform chain updating the "transformChain" entry in the task. Allowing this in the task, we can configure presets like this to allow correct transforms preset: ``` { "state": "READY", "data": { "format": "GeoTIFF" }, "changes": { "task": { "transformChain": { "type": "raster", "transforms": [{ "type": "GdalWarpTransform", "options": [ "-t_srs", "EPSG:4326", "-co", "TILED=YES", "-co", "BLOCKXSIZE=512", "-co", "BLOCKYSIZE=512"] }, { "type": "GdalAddoTransform", "options": [ "-r", "average"], "levels" : [2, 4, 8, 16, 32, 64, 128] }] } } } } ```
- Loading branch information