diff --git a/enpt/options/config.py b/enpt/options/config.py index 20b0562cf1d2a632dbe1f41afd27a8b0556e5f2a..b9671cce5b0997939acc1dee16dffbb26aa0bbb2 100644 --- a/enpt/options/config.py +++ b/enpt/options/config.py @@ -467,12 +467,6 @@ class EnPTConfig(object): self.target_coord_grid if self.target_coord_grid else \ enmap_coordinate_grid_utm if self.target_projection_type == 'UTM' else None - # bug warning regarding holes in bilinear resampling output - if self.target_projection_type == 'Geographic' and self.ortho_resampAlg == 'bilinear': - warnings.warn("There is currently a bug that causes holes in the bilinear resampling results if the " - "target projection is 'Geographic'. It is recommended to use 'nearest' or 'gauss' instead.", - UserWarning) - @staticmethod def absPath(path): return path if not path or os.path.isabs(path) else os.path.abspath(os.path.join(path_enptlib, path))