🚧 Implementations of the NetCDF Data Model
Opened this issue · 0 comments
han190 commented
Implementations of the NetCDF Data Model, based on it's official page. The tasks are
Core part of "Non-user-defined type"
- Implement
type :: dataset
and its' core methods:open
,create
,close
. - Implement
type :: group
and its' core methods. - Implement
type :: attribute
and its' core methods. - Implement
type :: dimension
and its' core methods. (Since Fortran has no reserved keyword, usedimension
, but a more consistent and convenient naming convention is needed.) - Implement
type :: variable
and its' core methods.