The NetCDF-Java/Common Data Model (CDM) library and THREDDS Data Server (TDS) version 4.3.20 were released on November 26, 2013. The development team recommends this upgrade for anyone using the CDM or TDS.
The NetCDF-Java/Common Data Model (CDM) library and THREDDS Data Server (TDS) version 4.3.19 were released on October 8, 2013. The development team recommends this upgrade for anyone using the CDM or TDS.
The NetCDF-Java/Common Data Model (CDM) library and THREDDS Data Server (TDS) version 4.3.18 were released on August 1, 2013. The development team recommends this upgrade for anyone using the CDM or TDS.
The NetCDF-Java/Common Data Model (CDM) library and THREDDS Data Server (TDS) version 4.3.17 were released on June 7, 2013. The development team recommends this upgrade for anyone using the CDM or TDS.
The NetCDF-Java/Common Data Model (CDM) library version 4.3.14 was released on November 20, 2012. Version 4.3 includes a complete rewrite of GRIB1 and GRIB2 file handling as well as a number of other features.
A SAX (Simple API for XML) parser is a particular mechanism for parsing XML documents. Using a SAX parser has the advantage over the DOM-based parser in that it is not necessary to build the explicit DOM tree. On the other hand, it can be difficult to build a SAX parser because it requires management of complex state.
Combining SAX parsing with a GNU Bison generated parser is appealing because it allows the Bison parser to manage all of the state. Additionally, the .y file encapsulates the equivalent of a DTD but in a much more readable form. The combination makes using SAX parsing a lot simpler.