Home
Manual
Packages
Global Index
Keywords
Quick Reference
|
functions in netcdf.i - N
NC_attr
|
NC_attr
struct NC_attr {
string name; /* represented as NC_string in file */
pointer data; /* represented as NC_array in file */
}
structure, defined at i/netcdf.i line 569
|
NC_dim
|
NC_dim
struct NC_dim {
string name; /* represented as NC_string in file */
long size; /* length of dimension */
}
structure, defined at i/netcdf.i line 563
|
NC_file
|
NC_file
struct NC_file {
string filename; /* for later creation */
long numrecs;
pointer dims, attrs, vars;
}
structure, defined at i/netcdf.i line 584
|
NC_var
|
NC_var
struct NC_var {
string name; /* represented as NC_string in file */
pointer dimlist; /* represented as NC_iarray in file, dims index */
pointer attrs; /* represented as NC_array in file */
int type; /* netCDF data type number */
long len; /* bytes */
long address;
}
structure, defined at i/netcdf.i line 575
|
|