NetCDF
4.9.2
|
Write a file demonstrating some of the features of netCDF-4. More...
Go to the source code of this file.
Macros | |
#define | ERR(e) {printf("Error: %s\n", nc_strerror(e)); exit(ERRCODE);} |
#define | ERRCODE 2 |
#define | FILE_NAME "simple_nc4.nc" |
#define | NDIMS 2 |
#define | NX 6 |
#define | NY 12 |
Functions | |
int | main () |
Write a file demonstrating some of the features of netCDF-4.
We create two shared dimensions, "x" and "y", in a parent group, and some netCDF variables in different subgroups. The variables will include a compound and an enum type, as well as some of the new atomic types, like the unsigned 64-bit integer.
This is part of the netCDF package. Full documentation of netCDF can be found at https://docs.unidata.ucar.edu/netcdf-c.
Definition in file simple_nc4_wr.c.