Go to file
Dennis Heimbigner 59e04ae071 This PR adds EXPERIMENTAL support for accessing data in the
cloud using a variant of the Zarr protocol and storage
format. This enhancement is generically referred to as "NCZarr".

The data model supported by NCZarr is netcdf-4 minus the user-defined
types and the String type. In this sense it is similar to the CDF-5
data model.

More detailed information about enabling and using NCZarr is
described in the document NUG/nczarr.md and in a
[Unidata Developer's blog entry](https://www.unidata.ucar.edu/blogs/developer/en/entry/overview-of-zarr-support-in).

WARNING: this code has had limited testing, so do use this version
for production work. Also, performance improvements are ongoing.
Note especially the following platform matrix of successful tests:

Platform | Build System | S3 support
------------------------------------
Linux+gcc      | Automake     | yes
Linux+gcc      | CMake        | yes
Visual Studio  | CMake        | no

Additionally, and as a consequence of the addition of NCZarr,
major changes have been made to the Filter API. NOTE: NCZarr
does not yet support filters, but these changes are enablers for
that support in the future.  Note that it is possible
(probable?) that there will be some accidental reversions if the
changes here did not correctly mimic the existing filter testing.

In any case, previously filter ids and parameters were of type
unsigned int. In order to support the more general zarr filter
model, this was all converted to char*.  The old HDF5-specific,
unsigned int operations are still supported but they are
wrappers around the new, char* based nc_filterx_XXX functions.
This entailed at least the following changes:
1. Added the files libdispatch/dfilterx.c and include/ncfilter.h
2. Some filterx utilities have been moved to libdispatch/daux.c
3. A new entry, "filter_actions" was added to the NCDispatch table
   and the version bumped.
4. An overly complex set of structs was created to support funnelling
   all of the filterx operations thru a single dispatch
   "filter_actions" entry.
5. Move common code to from libhdf5 to libsrc4 so that it is accessible
   to nczarr.

Changes directly related to Zarr:
1. Modified CMakeList.txt and configure.ac to support both C and C++
   -- this is in support of S3 support via the awd-sdk libraries.
2. Define a size64_t type to support nczarr.
3. More reworking of libdispatch/dinfermodel.c to
   support zarr and to regularize the structure of the fragments
   section of a URL.

Changes not directly related to Zarr:
1. Make client-side filter registration be conditional, with default off.
2. Hack include/nc4internal.h to make some flags added by Ed be unique:
   e.g. NC_CREAT, NC_INDEF, etc.
3. cleanup include/nchttp.h and libdispatch/dhttp.c.
4. Misc. changes to support compiling under Visual Studio including:
   * Better testing under windows for dirent.h and opendir and closedir.
5. Misc. changes to the oc2 code to support various libcurl CURLOPT flags
   and to centralize error reporting.
6. By default, suppress the vlen tests that have unfixed memory leaks; add option to enable them.
7. Make part of the nc_test/test_byterange.sh test be contingent on remotetest.unidata.ucar.edu being accessible.

Changes Left TO-DO:
1. fix provenance code, it is too HDF5 specific.
2020-06-28 18:02:47 -06:00
.github Moved code of conduct and contributing to .github folder. 2019-10-08 10:27:32 -06:00
cmake
conda.recipe
ctest_scripts Added a ctest script with DAP tests enabled. 2020-02-11 15:09:29 -07:00
dap4_test This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
debug This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
docs This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
examples This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
h5_test fixed LDFLAFS in plugins Makefile.am, also fixed warning in tst_h_vars.c 2020-06-02 07:34:46 -06:00
hdf4_test Spelling fixes 2019-09-18 08:03:01 -06:00
include This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
libdap2 This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
libdap4 This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
libdispatch This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
libhdf4 This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
libhdf5 This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
liblib This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
libnczarr This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
libsrc This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
libsrc4 This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
libsrcp Support no-op dispatch functions 2020-04-15 14:44:58 -06:00
nc_perf fix for memory leak due to HDF5 types 2020-02-09 11:47:13 -07:00
nc_test This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
nc_test4 This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
ncdap_test This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
ncdump This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
ncgen This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
ncgen3 This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
nctest Spelling fixes 2019-09-18 08:03:01 -06:00
nczarr_test This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
NUG This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
oc2 This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
plugins fixed the setting of AM_LDFLAGS 2020-06-25 10:22:33 -06:00
unit_test This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
.gitignore Shuffling NUG and documentation. 2020-02-06 16:14:25 -07:00
.travis.yml Turned off hdf4 explicitly when no NetCDF-4 support is available. 2020-01-07 18:04:30 -07:00
acinclude.m4
appveyor.yml Fix cmake X mmap 2019-04-19 20:32:26 -06:00
bootstrap
cmake_uninstall.cmake.in
CMakeInstallation.cmake
CMakeLists.txt This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
COMPILE.cmake.txt Restoring CMake compilation document. 2019-10-10 13:30:05 -06:00
config.h.cmake.in This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
config.h.cmake.in.old-works
configure.ac This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
COPYRIGHT
CTestConfig.cmake.in Adding new security stance to cdash instance. 2019-11-18 10:58:44 -07:00
CTestCustom.cmake
dods.m4 Spelling fixes 2019-09-18 08:03:01 -06:00
FixBundle.cmake.in
INSTALL.md Added a note about running autoreconf -if in support of https://github.com/Unidata/netcdf-c/issues/1397 2019-08-27 11:24:25 -06:00
lib_flags.am This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
libnetcdf.settings.in This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
Makefile.am This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
mclean
nc-config.cmake.in Fixed line return issue. 2019-04-08 15:05:26 -06:00
nc-config.in Fixed line return issue. 2019-04-08 15:05:26 -06:00
netcdf.pc.in
netCDFConfig.cmake.in Correct typo. 2020-01-24 16:53:16 -07:00
PostInstall.cmake
postinstall.sh.in
README.md Updated README.md Links 2020-06-04 14:16:30 -04:00
RELEASE_NOTES.md This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
test_common.in
test_prog.c
test-driver-verbose
wjna

Unidata NetCDF

Build Status Coverity Scan Build Status

About

The Unidata network Common Data Form (netCDF) is an interface for scientific data access and a freely-distributed software library that provides an implementation of the interface. The netCDF library also defines a machine-independent format for representing scientific data. Together, the interface, library, and format support the creation, access, and sharing of scientific data. The current netCDF software provides C interfaces for applications and data. Separate software distributions available from Unidata provide Java, Fortran, Python, and C++ interfaces. They have been tested on various common platforms.

Properties

NetCDF files are self-describing, network-transparent, directly accessible, and extendible. Self-describing means that a netCDF file includes information about the data it contains. Network-transparent means that a netCDF file is represented in a form that can be accessed by computers with different ways of storing integers, characters, and floating-point numbers. Direct-access means that a small subset of a large dataset may be accessed efficiently, without first reading through all the preceding data. Extendible means that data can be appended to a netCDF dataset without copying it or redefining its structure.

Use

NetCDF is useful for supporting access to diverse kinds of scientific data in heterogeneous networking environments and for writing application software that does not depend on application-specific formats. For information about a variety of analysis and display packages that have been developed to analyze and display data in netCDF form, see

More information

For more information about netCDF, see

Latest releases

You can obtain a copy of the latest released version of netCDF software for various languages:

Copyright and licensing information can be found here, as well as in the COPYRIGHT file accompanying the software

Installation

To install the netCDF-C software, please see the file INSTALL in the netCDF-C distribution, or the (usually more up-to-date) document:

Documentation

A language-independent User's Guide for netCDF, and some other language-specific user-level documents are available from:

A mailing list, netcdfgroup@unidata.ucar.edu, exists for discussion of the netCDF interface and announcements about netCDF bugs, fixes, and enhancements. For information about how to subscribe, see the URL

Feedback

We appreciate feedback from users of this package. Please send comments, suggestions, and bug reports to support-netcdf@unidata.ucar.edu.