-
Notifications
You must be signed in to change notification settings - Fork 36
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
Selector problems with reversed dims #56
Comments
Yep I'm just in the process of trying to track down the last of these bugs. Can you upload the file somewhere? That's probably the easiest way to fix this. |
ftp:https://ftp.cdc.noaa.gov/Datasets/noaa.ersst.v5/sst.mon.ltm.1981-2010.nc (1mb) |
It plots upside down too. My tests are are all with files with forward order latitudes, so thanks for catching this. There's a lot of detail to getting this all right for every format... |
Ok fixed :) I'll push it through sometime today. |
Ok that's on master now. Let me know any other issues you have, I'm keen to make a release this week. |
And by the way - for some reason NCDatasets,jl is not picking up the missing value in that file. You can set it manually by passing the kwarg for the array constructor to the stack: A = NCDstack(file; childkwargs=(missingval=-9.96921f36,))[:sst] And convert it to |
I tried to extract time series from an ocean dataset e.g. ersstv5.nc that has
Lat = Float32[88.0, 86.0, …, -86.0, -88.0]
. The point 100°E, 40°N is clearly land, but extracting this point shows ocean temperatures:And the reflected point (which is in ocean) has all missing values:
The text was updated successfully, but these errors were encountered: