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
Select a resampling algorithm. The default is ``nearest``, which is generally not
39
+
appropriate if sub-pixel accuracy is desired.
39
40
40
-
``nearest`` applies a nearest neighbour (simple sampling) resampler (default)
41
+
Starting with GDAL 3.9, when refreshing existing TIFF overviews, the previously
42
+
used method, as noted in the RESAMPLING metadata item of the overview, will
43
+
be used if :option:`-r` is not specified.
44
+
45
+
The available methods are:
46
+
47
+
``nearest`` applies a nearest neighbour (simple sampling) resampler.
41
48
42
49
``average`` computes the average of all non-NODATA contributing pixels. Starting with GDAL 3.1, this is a weighted average taking into account properly the weight of source pixels not contributing fully to the target pixel.
43
50
@@ -131,10 +138,15 @@ most supported file formats with one of several downsampling algorithms.
131
138
132
139
.. versionadded:: 2.3
133
140
134
-
levels are no longer required to build overviews.
141
+
Levels are no longer required to build overviews.
135
142
In which case, appropriate overview power-of-two factors will be selected
136
143
until the smallest overview is smaller than the value of the -minsize switch.
137
144
145
+
Starting with GDAL 3.9, if there are already existing overviews, the
146
+
corresponding levels will be used to refresh them if no explicit levels
147
+
are specified.
148
+
149
+
138
150
gdaladdo will honour properly NODATA_VALUES tuples (special dataset metadata) so
139
151
that only a given RGB triplet (in case of a RGB image) will be considered as the
140
152
nodata value and not each value of the triplet independently per band.
0 commit comments