-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
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
Gradient search resampling swath data gives transposed results #620
Comments
So, the issue is that resampling data that is a To reproduce: import glob
from pyresample.geometry import AreaDefinition
from satpy import Scene
adef = AreaDefinition("EPSG_3035_4km", "EPSG:3035", "EPSG_3035_4km", "EPSG:3035", 967, 980, [2426378.0132, 1528101.2618, 6293974.6215, 5446513.5222])
# Use some day-time data that covers Europe
fnames = glob.glob("/data/hrpt_noaa19_20240826_1002_80154.l1b")
lcl = glbl.resample(adef, resampler='gradient_search')
# Optional for comparing with nn
# lcl = glbl.resample(adef)
lcl.save_datasets(base_dir='/tmp', tiled=True, blockxsize=512, blockysize=512, overviews=[], driver="COG") Comparing the output of Switch to the built-in |
So I thought it could be due to the projection ( |
So a couple things that come to mind:
|
I need to check the ascending/descending orbit case. The first two I tested with behaved the same. But then I'd assume also the |
Originally posted by @pnuu in #618 (comment)
The text was updated successfully, but these errors were encountered: