NetCDF  4.9.2
simple_nc4_wr.c File Reference

Write a file demonstrating some of the features of netCDF-4. More...

#include <stdlib.h>
#include <stdio.h>
#include <netcdf.h>
Include dependency graph for simple_nc4_wr.c:

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 ()
 

Detailed Description

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.

Author
Ed Hartnett

Definition in file simple_nc4_wr.c.