You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/site/pages/netcdfJava/GribFilesCdm.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -151,7 +151,7 @@ You must generate the GRIB Collection index file in a [separate step](#creating-
151
151
A GRIB file is an unordered collection of GRIB records.
152
152
A GRIB record consists of a single 2D (x, y) slice of data.
153
153
The CDM library reads a GRIB file and creates a 2, 3,4, or 5 dimension Variable (time, ensemble, z, y, x), by finding the records with the same parameter, with different time / level / ensemble coordinates.
154
-
This amounts to [guessing the dataset schema](https://www.unidata.ucar.edu/blogs/developer/en/entry/dataset_schemas_are_lost_in){:target="_blank"} and the intent of the data provider, and is unfortunately a bit arbitrary.
154
+
This amounts to [guessing the dataset schema](https://www.unidata.ucar.edu/blogs/developer/entry/dataset_schemas_are_lost_in){:target="_blank"} and the intent of the data provider, and is unfortunately a bit arbitrary.
155
155
Most of our testing is against the NCEP operational models from the [IDD](https://www.unidata.ucar.edu/projects/index.html#idd){:target="_blank"}, and so are influenced by those.
156
156
Deciding how to group the GRIB records into CDM Variables is one of the main source of problems.
157
157
It uses the following GRIB fields to construct a unique variable.
5.7.x adds support for a service provider interface for applying enhancements by NSF Unidata summer intern Leo Matak (see https://www.unidata.ucar.edu/blogs/developer/en/entry/extensible-ncml-for-ai-ml for more information!).
65
+
5.7.x adds support for a service provider interface for applying enhancements by NSF Unidata summer intern Leo Matak (see https://www.unidata.ucar.edu/blogs/developer/entry/extensible-ncml-for-ai-ml for more information!).
66
66
BUFR support has been enhanced to include multi-category messages thanks to an external contribution from github user @Yaqiang!
67
67
Please see the release notes on GitHub for more details on additions, enhancements, and bug fixes.
68
68
@@ -97,7 +97,7 @@ Point release notes:
97
97
98
98
Much of the work in 5.4.x is focused on establishing a public API.
99
99
We now publish two sets of javadocs - [with](../javadoc-with-deprecations/){:target="_blank"} and [without deprecations](../javadoc/){:target="_blank"}.
100
-
For more information about these efforts and why this work is being done, please visit ([link](https://www.unidata.ucar.edu/blogs/developer/en/entry/netcdf-java-looking-ahead){:target="_blank"}).
100
+
For more information about these efforts and why this work is being done, please visit ([link](https://www.unidata.ucar.edu/blogs/developer/entry/netcdf-java-looking-ahead){:target="_blank"}).
101
101
Only those classes and methods outlined in the javadocs [without deprecations](../javadoc/) will exist in the next major release of netCDF-Java (`v6.0`).
102
102
103
103
For more information about the changes in this release, please visit the [netCDF-Java github wiki](https://github.com/Unidata/netcdf-java/wiki#public-api-details){:target="_blank"}.
Copy file name to clipboardExpand all lines: docs/src/site/pages/netcdfJava/faq.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -245,7 +245,7 @@ Netcdf-Java library supports writing netCDF-3 file format using the [classic dat
245
245
246
246
#### Q: What is the relationship of NetCDF with HDF5?
247
247
248
-
The netCDF-4 file format is built on top of the <ahref="http://www.hdfgroup.org/HDF5/">HDF5 file format</a>. NetCDF adds shared dimensions, so it is unfortunately not a strict subset of HDF5. Gory details are here: <ahref="https://www.unidata.ucar.edu/blogs/developer/en/entry/dimensions_scales">Part 1</a>, <ahref="https://www.unidata.ucar.edu/blogs/developer/en/entry/dimension_scale2">Part 2</a>, <ahref="https://www.unidata.ucar.edu/blogs/developer/en/entry/dimension_scales_part_3">Part 3</a>.
248
+
The netCDF-4 file format is built on top of the <ahref="http://www.hdfgroup.org/HDF5/">HDF5 file format</a>. NetCDF adds shared dimensions, so it is unfortunately not a strict subset of HDF5. Gory details are here: <ahref="https://www.unidata.ucar.edu/blogs/developer/entry/dimensions_scales">Part 1</a>, <ahref="https://www.unidata.ucar.edu/blogs/developer/entry/dimension_scale2">Part 2</a>, <ahref="https://www.unidata.ucar.edu/blogs/developer/en/entry/dimension_scales_part_3">Part 3</a>.
249
249
250
250
HDF5 is a very complicated format, and we do not plan to write a pure Java version for writing netCDF4 files (we do have a pure Java version for reading both HDF5 and netCDF-4). You must use the JNI interface to the [netCDF C library](netcdf4_c_library.html).
0 commit comments