1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
/*********************************************************************
* Copyright 1993, UCAR/Unidata
* See netcdf/COPYRIGHT file for copying and redistribution conditions.
* $Header: /private-cvsroot/minc/progs/mincgen/init.c,v 1.2 2006-05-19 00:35:58 bert Exp $
*********************************************************************/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdio.h>
#include <minc.h>
#include "generic.h"
#include "ncgen.h"
#include "genlib.h"
extern int netcdf_flag;
extern int c_flag;
extern int fortran_flag;
struct dims *dims; /* table of netcdf dimensions */
int ncid; /* handle for netCDF */
int ndims; /* number of dimensions declared for netcdf */
int nvars; /* number of variables declared for netcdf */
int natts; /* number of attributes */
int nvdims; /* number of dimensions for variables */
int dimnum; /* dimension number index for variables */
int varnum; /* variable number index for attributes */
int valnum; /* value number index for attributes */
int rec_dim; /* number of the unlimited dimension, if any */
size_t var_len; /* variable length (product of dimensions) */
size_t rec_len; /* number of elements for a record of data */
size_t var_size; /* size of each element of variable */
struct vars *vars; /* a malloc'ed list */
struct atts *atts; /* table of variable and global attributes */
int is_hdf5; /* TRUE if HDF5 file */
void
init_netcdf(int flag) { /* initialize global counts, flags */
clearout(); /* reset symbol table to empty */
ndims = 0;
nvars = 0;
rec_dim = -1; /* means no unlimited dimension (yet) */
is_hdf5 = flag;
}
|