⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 netcdf.h

📁 一个用来实现偏微分方程中网格的计算库
💻 H
📖 第 1 页 / 共 2 页
字号:
/* * Copyright 1993-2005 University Corporation for Atmospheric Research/Unidata *  * Portions of this software were developed by the Unidata Program at the  * University Corporation for Atmospheric Research. *  * Access and use of this software shall impose the following obligations * and understandings on the user. The user is granted the right, without * any fee or cost, to use, copy, modify, alter, enhance and distribute * this software, and any derivative works thereof, and its supporting * documentation for any purpose whatsoever, provided that this entire * notice appears in all copies of the software, derivative works and * supporting documentation.  Further, UCAR requests that the user credit * UCAR/Unidata in any publications that result from the use of this * software or in any product that includes this software. The names UCAR * and/or Unidata, however, may not be used in any advertising or publicity * to endorse or promote any products or commercial entity unless specific * written permission is obtained from UCAR/Unidata. The user also * understands that UCAR/Unidata is not obligated to provide the user with * any support, consulting, training or assistance of any kind with regard * to the use, operation and performance of this software nor to provide * the user with any updates, revisions, new versions or "bug fixes." *  * THIS SOFTWARE IS PROVIDED BY UCAR/UNIDATA "AS IS" AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL UCAR/UNIDATA BE LIABLE FOR ANY SPECIAL, * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION * WITH THE ACCESS, USE OR PERFORMANCE OF THIS SOFTWARE. *//* "$Id: netcdf.h 2501 2007-11-20 02:33:29Z benkirk $" */#ifndef _NETCDF_#define _NETCDF_#include <stddef.h> /* size_t, ptrdiff_t */#include <errno.h>  /* netcdf functions sometimes return system errors */#if defined(__cplusplus)extern "C" {#endif/* *  The netcdf external data types */typedef enum {	NC_NAT =	0,	/* NAT = 'Not A Type' (c.f. NaN) */	NC_BYTE =	1,	/* signed 1 byte integer */	NC_CHAR =	2,	/* ISO/ASCII character */	NC_SHORT =	3,	/* signed 2 byte integer */	NC_INT =	4,	/* signed 4 byte integer */	NC_FLOAT =	5,	/* single precision floating point number */	NC_DOUBLE =	6	/* double precision floating point number */} nc_type;/* * 	Default fill values, used unless _FillValue attribute is set. * These values are stuffed into newly allocated space as appropriate. * The hope is that one might use these to notice that a particular datum * has not been set. */#define NC_FILL_BYTE	((signed char)-127)#define NC_FILL_CHAR	((char)0)#define NC_FILL_SHORT	((short)-32767)#define NC_FILL_INT	(-2147483647L)#define NC_FILL_FLOAT	(9.9692099683868690e+36f) /* near 15 * 2^119 */#define NC_FILL_DOUBLE	(9.9692099683868690e+36)/* * The above values are defaults. * If you wish a variable to use a different value than the above * defaults, create an attribute with the same type as the variable * and the following reserved name. The value you give the attribute * will be used as the fill value for that variable. */#define _FillValue	"_FillValue"#define NC_FILL		0	/* argument to ncsetfill to clear NC_NOFILL */#define NC_NOFILL	0x100	/* Don't fill data section an records *//* * 'mode' flags for ncopen */#define NC_NOWRITE	0	/* default is read only */#define NC_WRITE    	0x1	/* read & write *//* * 'mode' flags for nccreate */#define NC_CLOBBER	0#define NC_NOCLOBBER	0x4	/* Don't destroy existing file on create */#define NC_64BIT_OFFSET 0x0200  /* Use large (64-bit) file offsets *//* * 'mode' flags for nccreate and ncopen */#define NC_SHARE	0x0800	/* Share updates, limit cacheing */#define NC_STRICT_NC3  (0x8)/* The following flag currently is ignored, but use in * nc_open() or nc_create() may someday support use of advisory * locking to prevent multiple writers from clobbering a file  */#define NC_LOCK		0x0400	/* Use locking if available *//* * Starting with version 3.6, there were two different format netCDF * files.  netCDF-4 introduces the third one. */#define NC_FORMAT_CLASSIC (1)#define NC_FORMAT_64BIT   (2)#define NC_FORMAT_NETCDF4 (3)#define NC_FORMAT_NETCDF4_CLASSIC  (4) /* create netcdf-4 files, with NC_STRICT_NC3. *//* * Let nc__create() or nc__open() figure out * as suitable chunk size. */#define NC_SIZEHINT_DEFAULT 0/* * In nc__enddef(), align to the chunk size. */#define NC_ALIGN_CHUNK ((size_t)(-1))/* * 'size' argument to ncdimdef for an unlimited dimension */#define NC_UNLIMITED 0L/* * attribute id to put/get a global attribute */#define NC_GLOBAL -1/* These are in support of the coordinate axis stuff. */#define NC_NOAXISTYPE 0#define NC_LATITUDE 1#define NC_LONGITUDE 2#define NC_GEOX 3#define NC_GEOY 4#define NC_GEOZ 5#define NC_HEIGHT_UP 6#define NC_HEIGHT_DOWN 7#define NC_PRESSURE 8#define NC_TIME 9#define NC_RADAZ 10#define NC_RADEL 11#define NC_RADDIST 12/* * These maximums are enforced by the interface, to facilitate writing * applications and utilities.  However, nothing is statically allocated to * these sizes internally. */#define NC_MAX_DIMS	65536	 /* max dimensions per file */#define NC_MAX_ATTRS	8192	 /* max global or per variable attributes */#define NC_MAX_VARS	524288	 /* max variables per file */#define NC_MAX_NAME	256	 /* max length of a name */#define NC_MAX_VAR_DIMS	8        /* max per variable dimensions *//* * The netcdf version 3 functions all return integer error status. * These are the possible values, in addition to certain * values from the system errno.h. */#define NC_ISSYSERR(err)	((err) > 0)#define	NC_NOERR	0	/* No Error */#define NC2_ERR         (-1)    /* Returned for all errors in the v2 API. */#define	NC_EBADID	(-33)	/* Not a netcdf id */#define	NC_ENFILE	(-34)	/* Too many netcdfs open */#define	NC_EEXIST	(-35)	/* netcdf file exists && NC_NOCLOBBER */#define	NC_EINVAL	(-36)	/* Invalid Argument */#define	NC_EPERM	(-37)	/* Write to read only */#define	NC_ENOTINDEFINE	(-38)	/* Operation not allowed in data mode */#define	NC_EINDEFINE	(-39)	/* Operation not allowed in define mode */#define	NC_EINVALCOORDS	(-40)	/* Index exceeds dimension bound */#define	NC_EMAXDIMS	(-41)	/* NC_MAX_DIMS exceeded */#define	NC_ENAMEINUSE	(-42)	/* String match to name in use */#define NC_ENOTATT	(-43)	/* Attribute not found */#define	NC_EMAXATTS	(-44)	/* NC_MAX_ATTRS exceeded */#define NC_EBADTYPE	(-45)	/* Not a netcdf data type */#define NC_EBADDIM	(-46)	/* Invalid dimension id or name */#define NC_EUNLIMPOS	(-47)	/* NC_UNLIMITED in the wrong index */#define	NC_EMAXVARS	(-48)	/* NC_MAX_VARS exceeded */#define NC_ENOTVAR	(-49)	/* Variable not found */#define NC_EGLOBAL	(-50)	/* Action prohibited on NC_GLOBAL varid */#define NC_ENOTNC	(-51)	/* Not a netcdf file */#define NC_ESTS        	(-52)	/* In Fortran, string too short */#define NC_EMAXNAME    	(-53)	/* NC_MAX_NAME exceeded */#define NC_EUNLIMIT    	(-54)	/* NC_UNLIMITED size already in use */#define NC_ENORECVARS  	(-55)	/* nc_rec op when there are no record vars */#define NC_ECHAR	(-56)	/* Attempt to convert between text & numbers */#define NC_EEDGE	(-57)	/* Start+count exceeds dimension bound */#define NC_ESTRIDE	(-58)	/* Illegal stride */#define NC_EBADNAME	(-59)	/* Attribute or variable name                                         contains illegal characters *//* N.B. following must match value in ncx.h */#define NC_ERANGE	(-60)	/* Math result not representable */#define NC_ENOMEM	(-61)	/* Memory allocation (malloc) failure */#define NC_EVARSIZE     (-62)   /* One or more variable sizes violate				   format constraints */ #define NC_EDIMSIZE     (-63)   /* Invalid dimension size */#define NC_ETRUNC       (-64)   /* File likely truncated or possibly corrupted *//* * The Interface *//* Declaration modifiers for DLL support (MSC et al) */#if defined(DLL_NETCDF) /* define when library is a DLL */#  if defined(NC_DLL_EXPORT) /* define when building the library */#   define MSC_EXTRA __declspec(dllexport)#  else#   define MSC_EXTRA __declspec(dllimport)#  endif#include <io.h>#define lseek _lseeki64#define off_t __int64#define stat __stat64#define fstat _fstat64#else#define MSC_EXTRA#endif	/* defined(DLL_NETCDF) */# define EXTERNL extern MSC_EXTRA/* When netCDF is built as a DLL, this will export ncerr and * ncopts. When it is used as a DLL, it will import them. */#if defined(DLL_NETCDF) MSC_EXTRA int ncerr;MSC_EXTRA int ncopts;#endifEXTERNL const char *nc_inq_libvers(void);EXTERNL const char *nc_strerror(int ncerr);EXTERNL intnc__create(const char *path, int cmode, size_t initialsz,	 size_t *chunksizehintp, int *ncidp);EXTERNL intnc_create(const char *path, int cmode, int *ncidp);EXTERNL intnc__open(const char *path, int mode, 	size_t *chunksizehintp, int *ncidp);EXTERNL intnc_open(const char *path, int mode, int *ncidp);EXTERNL intnc_set_fill(int ncid, int fillmode, int *old_modep);EXTERNL intnc_redef(int ncid);EXTERNL intnc__enddef(int ncid, size_t h_minfree, size_t v_align,	size_t v_minfree, size_t r_align);EXTERNL intnc_enddef(int ncid);EXTERNL intnc_sync(int ncid);EXTERNL intnc_abort(int ncid);EXTERNL intnc_close(int ncid);EXTERNL intnc_inq(int ncid, int *ndimsp, int *nvarsp, int *nattsp, int *unlimdimidp);EXTERNL int nc_inq_ndims(int ncid, int *ndimsp);EXTERNL int nc_inq_nvars(int ncid, int *nvarsp);EXTERNL int nc_inq_natts(int ncid, int *nattsp);EXTERNL int nc_inq_unlimdim(int ncid, int *unlimdimidp);EXTERNL intnc_set_default_format(int format, int *old_formatp);EXTERNL intnc_inq_format(int ncid, int *formatp);/* Begin _dim */EXTERNL intnc_def_dim(int ncid, const char *name, size_t len, int *idp);EXTERNL intnc_inq_dimid(int ncid, const char *name, int *idp);EXTERNL intnc_inq_dim(int ncid, int dimid, char *name, size_t *lenp);EXTERNL int nc_inq_dimname(int ncid, int dimid, char *name);EXTERNL int nc_inq_dimlen(int ncid, int dimid, size_t *lenp);EXTERNL intnc_rename_dim(int ncid, int dimid, const char *name);/* End _dim *//* Begin _att */EXTERNL intnc_inq_att(int ncid, int varid, const char *name,	   nc_type *xtypep, size_t *lenp);EXTERNL int nc_inq_attid(int ncid, int varid, const char *name, int *idp);EXTERNL int nc_inq_atttype(int ncid, int varid, const char *name, nc_type *xtypep);EXTERNL int nc_inq_attlen(int ncid, int varid, const char *name, size_t *lenp);EXTERNL intnc_inq_attname(int ncid, int varid, int attnum, char *name);EXTERNL intnc_copy_att(int ncid_in, int varid_in, const char *name, int ncid_out, int varid_out);EXTERNL intnc_rename_att(int ncid, int varid, const char *name, const char *newname);EXTERNL intnc_del_att(int ncid, int varid, const char *name);/* End _att *//* Begin {put,get}_att */EXTERNL intnc_put_att(int ncid, int varid, const char *name, nc_type datatype,	   size_t len, const void *value);EXTERNL intnc_get_att(int ncid, int varid, const char *name, void *value);EXTERNL intnc_put_att_text(int ncid, int varid, const char *name,		size_t len, const char *op);EXTERNL intnc_get_att_text(int ncid, int varid, const char *name, char *ip);EXTERNL intnc_put_att_uchar(int ncid, int varid, const char *name, nc_type xtype,	size_t len, const unsigned char *op);EXTERNL intnc_get_att_uchar(int ncid, int varid, const char *name, unsigned char *ip);EXTERNL intnc_put_att_schar(int ncid, int varid, const char *name, nc_type xtype,	size_t len, const signed char *op);EXTERNL intnc_get_att_schar(int ncid, int varid, const char *name, signed char *ip);EXTERNL intnc_put_att_short(int ncid, int varid, const char *name, nc_type xtype,	size_t len, const short *op);EXTERNL intnc_get_att_short(int ncid, int varid, const char *name, short *ip);EXTERNL intnc_put_att_int(int ncid, int varid, const char *name, nc_type xtype,	size_t len, const int *op);EXTERNL intnc_get_att_int(int ncid, int varid, const char *name, int *ip);EXTERNL intnc_put_att_long(int ncid, int varid, const char *name, nc_type xtype,	size_t len, const long *op);EXTERNL intnc_get_att_long(int ncid, int varid, const char *name, long *ip);EXTERNL intnc_put_att_float(int ncid, int varid, const char *name, nc_type xtype,	size_t len, const float *op);EXTERNL intnc_get_att_float(int ncid, int varid, const char *name, float *ip);EXTERNL intnc_put_att_double(int ncid, int varid, const char *name, nc_type xtype,	size_t len, const double *op);EXTERNL intnc_get_att_double(int ncid, int varid, const char *name, double *ip);/* End {put,get}_att *//* Begin _var */EXTERNL intnc_def_var(int ncid, const char *name, nc_type xtype, int ndims, 	   const int *dimidsp, int *varidp);EXTERNL intnc_inq_var(int ncid, int varid, char *name, nc_type *xtypep, 	   int *ndimsp, int *dimidsp, int *nattsp);EXTERNL intnc_inq_varid(int ncid, const char *name, int *varidp);EXTERNL int nc_inq_varname(int ncid, int varid, char *name);EXTERNL int nc_inq_vartype(int ncid, int varid, nc_type *xtypep);EXTERNL int nc_inq_varndims(int ncid, int varid, int *ndimsp);EXTERNL int nc_inq_vardimid(int ncid, int varid, int *dimidsp);EXTERNL int nc_inq_varnatts(int ncid, int varid, int *nattsp);EXTERNL intnc_rename_var(int ncid, int varid, const char *name);EXTERNL intnc_copy_var(int ncid_in, int varid, int ncid_out);#ifndef ncvarcpy/* support the old name for now */#define ncvarcpy(ncid_in, varid, ncid_out) ncvarcopy((ncid_in), (varid), (ncid_out))#endif/* End _var *//* Begin {put,get}_var1 */EXTERNL intnc_put_var1(int ncid, int varid, const size_t *indexp, const void *value);EXTERNL intnc_get_var1(int ncid, int varid, const size_t *indexp, void *value);EXTERNL intnc_put_var1_text(int ncid, int varid, const size_t *indexp, const char *op);EXTERNL intnc_get_var1_text(int ncid, int varid, const size_t *indexp, char *ip);EXTERNL intnc_put_var1_uchar(int ncid, int varid, const size_t *indexp,	const unsigned char *op);EXTERNL intnc_get_var1_uchar(int ncid, int varid, const size_t *indexp,	unsigned char *ip);EXTERNL intnc_put_var1_schar(int ncid, int varid, const size_t *indexp,	const signed char *op);EXTERNL intnc_get_var1_schar(int ncid, int varid, const size_t *indexp,	signed char *ip);EXTERNL intnc_put_var1_short(int ncid, int varid, const size_t *indexp,	const short *op);EXTERNL intnc_get_var1_short(int ncid, int varid, const size_t *indexp,	short *ip);EXTERNL intnc_put_var1_int(int ncid, int varid, const size_t *indexp, const int *op);EXTERNL intnc_get_var1_int(int ncid, int varid, const size_t *indexp, int *ip);EXTERNL intnc_put_var1_long(int ncid, int varid, const size_t *indexp, const long *op);EXTERNL intnc_get_var1_long(int ncid, int varid, const size_t *indexp, long *ip);EXTERNL intnc_put_var1_float(int ncid, int varid, const size_t *indexp, const float *op);EXTERNL intnc_get_var1_float(int ncid, int varid, const size_t *indexp, float *ip);EXTERNL intnc_put_var1_double(int ncid, int varid, const size_t *indexp, const double *op);EXTERNL intnc_get_var1_double(int ncid, int varid, const size_t *indexp, double *ip);/* End {put,get}_var1 *//* Begin {put,get}_vara */EXTERNL intnc_put_vara(int ncid, int varid,	 const size_t *start, const size_t *count, const void *value);EXTERNL intnc_get_vara(int ncid, int varid,	 const size_t *start, const size_t *count, void *value);EXTERNL intnc_put_vara_text(int ncid, int varid,	const size_t *startp, const size_t *countp, const char *op);EXTERNL intnc_get_vara_text(int ncid, int varid,	const size_t *startp, const size_t *countp, char *ip);EXTERNL intnc_put_vara_uchar(int ncid, int varid,	const size_t *startp, const size_t *countp, const unsigned char *op);EXTERNL intnc_get_vara_uchar(int ncid, int varid,	const size_t *startp, const size_t *countp, unsigned char *ip);EXTERNL intnc_put_vara_schar(int ncid, int varid,

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -