-
Notifications
You must be signed in to change notification settings - Fork 28
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
readvar() vs putvar()? #169
Comments
Not sure why it was originally called |
@visr I understand your concern. Then, how about introducing a new function without deprecating an existing one? For instance, to be consistent with other packages, how about creating |
I just found NetCDF.jl also exports |
I'm personally now only doing very light maintenance on this package, since I'm normally using NCDatasets.jl if I use netCDF files. There was discussion on the future of those packages in Alexander-Barth/NCDatasets.jl#57 but it didn't quite conclude yet. |
I dug up |
I can't really say what the future of this package is beyond the thread I linked. I don't think it will quickly be deprecated though. I'm not sure about broken tests in NCDatasets, on master I see CI is passing. Perhaps good to file an issue if you have local failures. |
@visr Thanks for your reply. Then, I will dig up NCDatasets.jl and try to find a way I can contribute something to the package. See you there. |
While using NetCDF.jl, I found the package provides
readvar()
andputvar()
for reading and writing a variable respectively. Not sure why the function names were designed in the way, rather than eithergetvar()
andputvar()
orreadvar()
andwritevar()
. For instance, MATLAB providesgetvar()
andputvar()
, which makes more sense to me. Any reason to introduce the asymmetric function names?The text was updated successfully, but these errors were encountered: