|
void | set_compression_level_impl (int level) const |
|
void | create_impl (const std::string &filename) |
| Create a NetCDF file.
|
|
void | def_var_impl (const std::string &name, io::Type nctype, const std::vector< std::string > &dims) const |
| Define a variable.
|
|
void | open_impl (const std::string &filename, io::Mode mode) |
|
void | sync_impl () const |
|
void | close_impl () |
| Close a NetCDF file.
|
|
void | enddef_impl () const |
| Exit define mode.
|
|
void | redef_impl () const |
| Enter define mode.
|
|
void | def_dim_impl (const std::string &name, size_t length) const |
| Define a dimension.
|
|
void | inq_dimid_impl (const std::string &dimension_name, bool &exists) const |
|
void | inq_dimlen_impl (const std::string &dimension_name, unsigned int &result) const |
| Get a dimension length.
|
|
void | inq_unlimdim_impl (std::string &result) const |
| Get an unlimited dimension.
|
|
void | get_vara_double_impl (const std::string &variable_name, const std::vector< unsigned int > &start, const std::vector< unsigned int > &count, double *ip) const |
|
void | put_vara_double_impl (const std::string &variable_name, const std::vector< unsigned int > &start, const std::vector< unsigned int > &count, const double *op) const |
|
void | inq_nvars_impl (int &result) const |
| Get the number of variables.
|
|
void | inq_vardimid_impl (const std::string &variable_name, std::vector< std::string > &result) const |
| Get dimensions a variable depends on.
|
|
void | inq_varnatts_impl (const std::string &variable_name, int &result) const |
| Get the number of attributes of a variable.
|
|
void | inq_varid_impl (const std::string &variable_name, bool &exists) const |
| Finds a variable and sets the "exists" flag.
|
|
void | inq_varname_impl (unsigned int j, std::string &result) const |
|
void | get_att_double_impl (const std::string &variable_name, const std::string &att_name, std::vector< double > &result) const |
| Gets a double attribute.
|
|
void | get_att_text_impl (const std::string &variable_name, const std::string &att_name, std::string &result) const |
| Gets a text attribute.
|
|
void | put_att_double_impl (const std::string &variable_name, const std::string &att_name, io::Type xtype, const std::vector< double > &data) const |
| Writes a double attribute.
|
|
void | put_att_text_impl (const std::string &variable_name, const std::string &att_name, const std::string &value) const |
| Writes a text attribute.
|
|
void | inq_attname_impl (const std::string &variable_name, unsigned int n, std::string &result) const |
| Gets the name of a numbered attribute.
|
|
void | inq_atttype_impl (const std::string &variable_name, const std::string &att_name, io::Type &result) const |
| Gets the type of an attribute.
|
|
void | set_fill_impl (int fillmode, int &old_modep) const |
| Sets the fill mode.
|
|
void | del_att_impl (const std::string &variable_name, const std::string &att_name) const |
|
int | get_varid (const std::string &variable_name) const |
|
virtual void | def_var_chunking_impl (const std::string &name, std::vector< size_t > &dimensions) const |
|
virtual void | write_darray_impl (const std::string &variable_name, const Grid &grid, unsigned int z_count, bool time_dependent, unsigned int record, const double *input) |
|