mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
Merge branch 'patch-9' of https://github.com/gsjaardema/netcdf-c into pr-catchup
This commit is contained in:
commit
bc5d6f1d05
@ -254,11 +254,14 @@ These maximums are not used for netCDF-4/HDF5 files unless they were
|
||||
created with the ::NC_CLASSIC_MODEL flag.
|
||||
|
||||
As a rule, NC_MAX_VAR_DIMS <= NC_MAX_DIMS.
|
||||
|
||||
NOTE: The NC_MAX_DIMS, NC_MAX_ATTRS, and NC_MAX_VARS limits
|
||||
are *not* enforced after version 4.5.0
|
||||
*/
|
||||
/**@{*/
|
||||
#define NC_MAX_DIMS 1024
|
||||
#define NC_MAX_ATTRS 8192
|
||||
#define NC_MAX_VARS 8192
|
||||
#define NC_MAX_DIMS 1024 /* not enforced after 4.5.0 */
|
||||
#define NC_MAX_ATTRS 8192 /* not enforced after 4.5.0 */
|
||||
#define NC_MAX_VARS 8192 /* not enforced after 4.5.0 */
|
||||
#define NC_MAX_NAME 256
|
||||
#define NC_MAX_VAR_DIMS 1024 /**< max per variable dimensions */
|
||||
/**@}*/
|
||||
|
Loading…
Reference in New Issue
Block a user