You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the great work @Jorl17! I've noted in your code here that you use default arguments for gdal_translate, including the -r flag which specifies the re-sampling algorithm. The default when not otherwise specified is "nearest", but would be more appropriately specified as one of the non-default options like cubicspline to ensure some form of interpolation is applied. It's just a simple matter of adding an extra line to your code of:
gdal_translate -q \
-r cubicspline \
-projwin ...
The text was updated successfully, but these errors were encountered:
Thanks for the great work @Jorl17! I've noted in your code here that you use default arguments for
gdal_translate
, including the-r
flag which specifies the re-sampling algorithm. The default when not otherwise specified is "nearest", but would be more appropriately specified as one of the non-default options likecubicspline
to ensure some form of interpolation is applied. It's just a simple matter of adding an extra line to your code of:The text was updated successfully, but these errors were encountered: