Edward Hartnett
fe7132be91
fixed deflate_level comment
2020-01-06 16:31:49 -07:00
Edward Hartnett
184507be5f
now using members in NC_VAR_INFO_T to hold szip info
2020-01-06 08:46:03 -07:00
Edward Hartnett
e703a7678c
first stab at re-adding nc_def_var_szip()
2020-01-03 11:38:45 -07:00
Edward Hartnett
82df2876b6
starting to support compact storage
2019-12-04 07:53:37 -07:00
Ward Fisher
72d889d15a
A better solution to previous fix, in line with documented usage of netcdf.h and other header files.
2019-11-04 14:07:50 -07:00
Ward Fisher
e7cc899264
Merge branch 'ejh_try2' of https://github.com/NetCDF-World-Domination-Council/netcdf-c into gh1487.wif
2019-09-20 14:04:56 -06:00
Greg Sjaardema
56c0d5cf8a
Spelling fixes
2019-09-18 08:03:01 -06:00
edwardhartnett
2cd228bcd4
porting changes from other PR
2019-09-16 11:28:18 -06:00
edwardhartnett
5d1e3b4593
more doxygen documentation for nc4internal.h
2019-08-21 18:31:37 -06:00
edwardhartnett
5b3891a253
more unit tests, starting on doxygen docs for nc4internal.h
2019-08-21 16:04:59 -06:00
edwardhartnett
83c6cd58a7
more changes in support of user-defined formats
2019-08-03 17:19:13 -06:00
edwardhartnett
181f260a20
adding, and starting to use nc4_file_list_add()
2019-08-02 09:14:35 -06:00
Ed Hartnett
d840c1864c
removed unused prototype
2019-07-16 16:02:08 -06:00
Ward Fisher
3b34a82e19
Merge branch 'master' into threads_part1.dmh
2019-05-01 14:41:13 -06:00
Dennis Heimbigner
6934aa2e8b
Thread safety: step 1: cleanup
...
re: https://github.com/Unidata/netcdf-c/issues/1373 (partial)
* Mark some global constants be const to indicate to make them easier to track.
* Hide direct access to the ncrc_globalstate behind a function call.
* Convert dispatch tables to constants (except the user defined ones)
This has some consequences in terms of function arguments needing to be marked
as const also.
* Remove some no longer needed global fields
* Aggregate all the globals in nclog.c
* Uniformly replace nc_sizevector{0,1} with NC_coord_{zero,one}
* Uniformly replace nc_ptrdffvector1 with NC_stride_one
* Remove some obsolete code
2019-03-30 14:06:20 -06:00
Dennis Heimbigner
88a7a1753c
Simplify libhdf5/nc5info.c to move to lazy parsing
...
re: https://github.com/Unidata/netcdf-c/issues/1352
When nc4info.c encounters an _NCProperties attribute
with a version number it does not recognize, it does not
show it correctly.
Solution chosen is to arrange so that accessing the attribute
returns the raw value of the Attribute from the file. This way,
even if the version is unrecognized, it will return something
usable.
The changes were primarily to never attempt to parse the value
of _NCProperties until actually required. Which since they
are currently not used means that parsing never occurs.
Also modified ncdump/tst_fileinfo.sh to include some extra testing
I tested the original failure by changing the value of NCPROPS to 3.
However, there is no way to test this at build time.
Misc. Changes
* Inlined the provenance info in the NC_FILE_INFO_T structure
* Centralized stuff from elsewhere into include/nc_provenance.h
Misc. Unrelated Changes
* Removed/turned off some misc debug output left on by accident
* Fix CPPFLAGS name error in libhdf5/Makefile.am
2019-03-09 20:35:57 -07:00
Ed Hartnett
a22e895c10
cleanup of whitespace in include directory
2019-02-19 06:10:30 -07:00
Ed Hartnett
840d51d035
changed NC_GRP_INFO_T to use atts_read instead of atts_not_read
2019-01-22 08:11:52 -07:00
Ed Hartnett
243cef8fa5
changed var atts_not_read to atts_read
2019-01-21 08:40:04 -07:00
Ed Hartnett
7249350c3f
now remember whether coords att has been read for a var
2018-12-19 09:43:32 -07:00
Ed Hartnett
1b38d9aef8
lazy read of some var metadata
2018-12-18 07:48:22 -07:00
Ed Hartnett
3697f43b1d
whitespace fixes in header file, fixed enable-benchmarks doc string in configure.ac
2018-12-17 07:59:33 -07:00
Ward Fisher
30ea33435c
Merge remote-tracking branch 'origin/license_update.wif' into pr-aggregation.wif
2018-12-11 17:08:21 -05:00
Ward Fisher
6deb77bade
Merge branch 'master' into gh1207.dmh
2018-12-11 16:44:04 -05:00
Ward Fisher
5be0126920
More standardizing of the copyright stanza.
2018-12-06 14:13:56 -07:00
Ward Fisher
0f72f42d3a
Merge branch 'ejh_next_17' of https://github.com/NetCDF-World-Domination-Council/netcdf-c into pr-aggregation.wif
2018-11-28 13:28:26 -07:00
Ward Fisher
a8673c3dfe
Moving provenance info out so that it doesn't depend on netCDF4 support to display.
2018-11-27 16:09:17 -07:00
Ed Hartnett
1df4bb1762
moving lazy atts code to libhdf5
2018-11-26 08:21:32 -07:00
Ed Hartnett
8dc1ffea38
removing HDF5 type info from libsrc4
2018-11-20 14:26:11 -07:00
Ed Hartnett
ab963e3d41
removing HDF5 type info from libsrc4
2018-11-20 14:24:40 -07:00
Ed Hartnett
9aedbd0c41
changing over native_hdf_typeid
2018-11-20 10:55:45 -07:00
Ed Hartnett
6bebb703a6
trying types again
2018-11-20 06:37:53 -07:00
Ed Hartnett
1d5307b600
merged in ejh_next_10
2018-11-19 09:25:04 -07:00
Ed Hartnett
3ec8b34bfb
removed unneeded HDF5 fields
2018-11-19 09:23:43 -07:00
Dennis Heimbigner
4bb92b77db
Fix error report coming out of nc4info.c
...
re: issue https://github.com/Unidata/netcdf-c/issues/1207
The NC4_get_provenance is generating a spurious error message.
This properly suppresses it.
2018-11-16 15:31:37 -07:00
Ed Hartnett
4c1b3a225b
clean up
2018-11-16 10:07:54 -07:00
Ed Hartnett
8ae5ebf6bc
remove unneeded params from function
2018-11-16 08:26:09 -07:00
Ed Hartnett
60a33b9e8b
removed hdf5 stuff from NC_FIELD_INFO_T
2018-11-15 16:46:22 -07:00
Ed Hartnett
fda69e6b23
moving rest of var stuff
2018-11-13 17:05:50 -07:00
Ed Hartnett
6a66ecd3d0
moving rest of var stuff
2018-11-13 17:03:11 -07:00
Ed Hartnett
d7aac4501b
removing hid_t from NC_VAR_INFO_T
2018-11-13 16:10:49 -07:00
Ed Hartnett
4045588516
removing hid_t from NC_VAR_INFO_T
2018-11-13 16:10:34 -07:00
Ed Hartnett
f7cb5ead1c
moving var hdf5-specific info into libhdf5
2018-11-13 05:44:39 -07:00
Ed Hartnett
578ddb2a28
cleaning up nc4internal.h
2018-11-13 05:27:46 -07:00
Ed Hartnett
286e276390
cleaning up nc4internal.h
2018-11-13 05:18:00 -07:00
Ed Hartnett
825047b8f6
rest of moving HDF5 specific group info to libhdf5
2018-11-12 14:04:17 -07:00
Ed Hartnett
c35aa3ccb9
changed header files to separate HDF5-specific grp info
2018-11-12 07:40:15 -07:00
Ed Hartnett
7534cb24fe
cleanup
2018-11-08 11:12:38 -07:00
Ed Hartnett
856e4ead03
moved hdf_dimscaleid to hdf5-specific dim info
2018-11-08 10:55:21 -07:00
Ed Hartnett
8aabd2020c
moving HDF5 dim fields to hdf5internal.h from nc4internal.h
2018-11-08 07:09:11 -07:00