netcdf-java
netcdf-java copied to clipboard
The Unidata netcdf-java library
ncml files (and probably more types) are ignored as netcdf files. The dataset should be opened using the netcdfDataset.open methods. https://github.com/Unidata/netcdf-java/blob/c74b0bbd3c0d0797c539cf43afff79db34ea4b24/dap4/d4cdm/src/main/java/dap4/cdm/dsp/CDMDSP.java#L117-L118 This relates with issue Unidata/tds#30 N.B: @zequihg50 this FYI
ucar.unidata.io.http.maxHttpBufrSize is removed from 6x and needs to be deprecated in 5.x SystemProperties.md docs. In 6x, defaultRemoteFileBufferSize is used instead.
General issues with the user guide are collected here.
Make HDFS and S3 RandomAccessFile (and company) part of mainline codebase (currently in a [feature branch](https://github.com/Unidata/thredds/compare/5.0.0...feature/s3+hdfs)). These should be in separate modules, and use the Server Provider interface, especially since...
PR Undiata/netcdf-java#57 added a new test category: `ucar.unidata.util.test.category.Slow`. Currently, tests annotated with that category will always be ignored. At a minimum, we should still run these tests on Jenkins. The...
In CDL, `long` is a [synonym](https://www.unidata.ucar.edu/software/netcdf/documentation/NUG/_c_d_l.html#cdl_data_types) for the `int` data type (4-byte signed integer). In netCDF-Java, [`ArrayType.LONG`](https://github.com/Unidata/netcdf-java/blob/01d8aef292cc7bbcee556657129bc88694613d65/cdm/core/src/main/java/ucar/array/ArrayType.java#L25) and [`ArrayType.ULONG`](https://github.com/Unidata/netcdf-java/blob/01d8aef292cc7bbcee556657129bc88694613d65/cdm/core/src/main/java/ucar/array/ArrayType.java#L32) are 8-byte integers but they use `long` and `ulong` when writing...
Tutorials on how to implement a Projection/Transform are out of date and difficult to follow.
Feature types have changed in 6, without updated documentation.
For now, the developer's guide is just a collection of information, but should be organized into something more digestible.
HDF5 has a "version 3" spec. Our code should be reviewed for conformance. We especially need to gather example files that use version 3 features for testing. https://support.hdfgroup.org/HDF5/doc/H5.format.html