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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
/*********************************************************************
* Copyright 1993, UCAR/Unidata
* See netcdf/COPYRIGHT file for copying and redistribution conditions.
*********************************************************************/
#ifndef NCDUMP_H
#define NCDUMP_H
#define ERR_READFAIL \
-2 /* Used to return by vardata() to indicate that \
ncvarget() fails to read the data */
typedef enum { false = 0, true = 1 } bool;
struct ncdim { /* dimension */
char name[H4_MAX_NC_NAME];
long size;
};
struct ncvar { /* variable */
char name[H4_MAX_NC_NAME];
nc_type type;
int ndims;
int dims[H4_MAX_VAR_DIMS];
int natts;
};
struct ncatt { /* attribute */
int var;
char name[H4_MAX_NC_NAME];
nc_type type;
int len;
void *val;
};
typedef enum { LANG_NONE, LANG_C, LANG_F } Nclang;
struct fspec { /* specification for how to format dump */
char *name; /*
* name specified with -n or derived from file
* name
*/
bool header_only; /*
* if true, don't print any variable data
*/
bool coord_vals; /*
* if true, print header and coordinate
* dimension values (values of variables that
* are also dimensions), but no other variable
* data
*/
bool brief_data_cmnts; /*
* if true, put // comments in data section
* identifying variable and indices, useful for
* navigating through large multi-dimensional
* data lists.
*/
bool full_data_cmnts; /*
* if true, put // comments in data section
* identifying every value, useful for
* navigating through large multi-dimensional
* data lists.
*/
bool fix_str; /*
* if true, replace nonalpha-numeric
* characters in a name with underscores
*/
Nclang data_lang; /*
* Specifies index conventions used in data
* comments, either LANG_C (C, 0-based, column
* major) or LANG_F (Fortran, 1-based, row
* major)
*/
int nlvars; /*
* Number of variables specified with -v option
* on command line
*/
char **lvars; /*
* list of variable names specified with -v
* option on command line
*/
};
#endif /* NCDUMP_H */
|