Replies: 1 comment 1 reply
-
Thanks for this, it seems like an issue yes :) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I'm recently using Eoreader to process Sentinel-3 OL_1_EFR data. When load data directly from a unzipped folder, the package mistakenly read
tie_geo_coordinates.nc
asgeo_coordinates.nc
when I try to load a band.The example data is from here.
The error message is:
Looks like the issue is from this function. It handles zipped and unzipped path. If path is a zipped file, it use
path.get_archived_path
function from packagesertit
. It will return only one file path end withgeo_coordinates.nc
. If it's a unzip folder, it usesPath.glob
to find all files endwithgeo_coordinates.nc
. It can begeo_coordinates.nc
ortie_geo_coordinates.nc
.Looks like this is a potential bug. Could you look into that?
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions