Rename the function that loads input data
Datseris opened this issue · 2 comments
Datseris commented
At the moment input data are loaded with a function called ClimArray
. This is not a good design idea. ClimArray
should be reserved exclusively for the constructor.
What is a better name for a function that directly loads .nc
data and outputs them as a ClimArray
?
Balinus commented
Perhaps something that follows FileIO.jl?
https://github.com/JuliaIO/FileIO.jl
Datseris commented
Good idea, however I think that FileIO
is really for disk-to-memory direct things, so NCDatasets.jl should be using that interface. We could use ncread
and ncwrite
though as the names here!