-
Notifications
You must be signed in to change notification settings - Fork 67
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
default_dtype set to something else than None in open_mdsdataset ? #29
Comments
I am using the latest master from github that I have updated last week. I think I will still have this issue with the current master but I have to test it again to be sure (soon because I'm currently attending a meeting). By the way, I have successfully made an extraction from llc4320 to a netcdf file. It only takes a couple of lines. I have to thank you for this nice job. You've made the binaries quite easy to read using xarray objects. |
Ok, glad to hear it! Did you do this on pleiades? Or some other system? Could you post your code as a gist perhaps? I am still having big problems on pleaides. |
Not yet, I am still prototyping with a few snapshots on a local cluster. I have to figure out the best way to convert several timesteps into netcdf files. I'll be glad to share this extraction code afterwards. |
You can read multiple timesteps with And you can write multiple netcdf files using |
So to clarify the original issue: are you saying that the If so, I would welcome a pull request to fix the problem. |
The I could suggest to set another default value. I could make a pull request for that. |
This was on purpose. I don't want to assume the datatype. If the user wants to be able to read .data files without any .meta files, the user has to manually put this information in. If we assume a datatype and it is the wrong datatype, the user will get nonsense and not know why. However, I think the documentation and error message could be improved to clarify this. Can you post the error you get if you don't specify the datatype? |
That's fair enough. Here is the complete error I get.
It basically says that the *.meta file does not exist. In this case, it would be nice to add something that encourages the user to specify the |
Yes I agree the error should be more verbose.
Would you feel comfortable putting together a pull request for this?
…Sent from my iPhone
On Jan 17, 2017, at 9:02 AM, Guillaume Sérazin ***@***.***> wrote:
That's fair enough.
Here is the complete error I get.
File "extract_llc_eta.py", line 27, in <module>
ds = open_mdsdataset(main_dir, grid_dir=grid_dir, geometry='llc', iters=timestep)
File "/home/users/serazin3g/miniconda2/envs/xmitgcm-dev/lib/python2.7/site-packages/xmitgcm-0.1.0-py2.7.egg/xmitgcm/mds_store.py", line 180, in open_mdsdataset
nx=nx, ny=ny, nz=nz)
File "/home/users/serazin3g/miniconda2/envs/xmitgcm-dev/lib/python2.7/site-packages/xmitgcm-0.1.0-py2.7.egg/xmitgcm/mds_store.py", line 421, in __init__
for (vname, dims, data, attrs) in self.load_from_prefix(p, iternum):
File "/home/users/serazin3g/miniconda2/envs/xmitgcm-dev/lib/python2.7/site-packages/xmitgcm-0.1.0-py2.7.egg/xmitgcm/mds_store.py", line 500, in load_from_prefix
shape=data_shape, llc=self.llc)
File "/home/users/serazin3g/miniconda2/envs/xmitgcm-dev/lib/python2.7/site-packages/xmitgcm-0.1.0-py2.7.egg/xmitgcm/utils.py", line 87, in read_mds
raise e
IOError: [Errno 2] No such file or directory: '/srv/share/modelset102/SSH_from_NASA/Eta.0000327888.meta'
It basically says that the *.meta file does not exist. In this case, it would be nice to add something that encourages the user to specify the default_dtype parameter. The exception in 'utils.mds_store' (see my first post) may have to be slightly modified.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or mute the thread.
|
Sure. |
I have faced another issue with the I may suggest a little check for the
When metadata are present, everything is alright since the endian is specified on the current dtype.
|
Yes, I agree those keywords are somewhat overlapping and confusing. Please go ahead and address all of this in your PR. |
Closed by #34 |
I had some trouble to figure out that I needed to specify
default_dtype
to read llc4320 outputs without having a .meta file for each variable.By default, it is set to 'f4' in
mds_store._MDSDataStore(xr.backends.common.AbstractDataStore)
but it is probably overridden byNone
coming frommds_store.open_mdsdataset
default arguments.Would it be better to set 'default_dtype' to 'f4' in
mds_store.open_mdsdataset
?This would avoid to raise the IO exception in
utils.read_mds
when the code try to build the missing metadata.The text was updated successfully, but these errors were encountered: