We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When create a new task, applying the presets, sometimes the transformations are not sorted correctly.
The text was updated successfully, but these errors were encountered:
Fix geosolutions-it#1188 Add presets for the whole task
c28b1ec
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] }] } } } } ```
Fix #1188 Add presets for the whole task (#1191)
a064741
offtherailz
Successfully merging a pull request may close this issue.
When create a new task, applying the presets, sometimes the transformations are not sorted correctly.
The text was updated successfully, but these errors were encountered: