From 5b7ddcca063ce2f581782dd3b9f994f607ebb060 Mon Sep 17 00:00:00 2001 From: Jennifer Oxelson Date: Thu, 11 Nov 2021 10:55:52 -0700 Subject: [PATCH] docs migration, part 2 --- INSTALL.md | 2 +- RELEASE_NOTES.md | 2 +- docs/known_problems.md | 2 +- docs/tutorial.dox | 4 ++-- examples/C/simple_xy_nc4_rd.c | 2 +- examples/C/simple_xy_nc4_wr.c | 2 +- examples/C/simple_xy_rd.c | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 945e76f4ac..b9cf104d7d 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -158,7 +158,7 @@ is being built. Note that for shared libraries, you may need to add the install directory to the LD_LIBRARY_PATH environment variable. See -the netCDF +the netCDF FAQ for more details on using shared libraries. If you are building HDF5 with szip, then include the --with-szlib= diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 0364729bab..bddb94c35f 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -371,7 +371,7 @@ NC\_FORMAT\_UNDEFINED | NC\_FORMATX\_UNDEFINED * Reduced minimum cmake version to `2.8.11` from `2.8.12`. This will allow for cmake use on a broader set of popular linux platforms without having to do a custom cmake install. See https://github.com/Unidata/netcdf-c/issues/135 for more information. -* The documentation section `The Default Chunking Scheme` has been updated with more information. This lives in the `guide.dox` file in the `docs/` directory, or can be found online in the appropriate location (typically https://www.unidata.ucar.edu/netcdf/docs/), once this release has been published. +* The documentation section `The Default Chunking Scheme` has been updated with more information. This lives in the `guide.dox` file in the `docs/` directory, or can be found online in the appropriate location (typically https://docs.unidata.ucar.edu/netcdf-c/), once this release has been published. ### 4.4.0-RC3 2015-10-08 diff --git a/docs/known_problems.md b/docs/known_problems.md index 55ad8b5f3c..45bf9a6ed6 100644 --- a/docs/known_problems.md +++ b/docs/known_problems.md @@ -254,7 +254,7 @@ conditions are met: fixed-size variable in a file with no record variables or the last record variable, because otherwise it would violate the format constraints for netCDF classic or 64-bit offset formats described - [here](https://www.unidata.ucar.edu/netcdf/docs/netcdf/NetCDF-Classic-Format-Limitations.html). + [here](https://docs.unidata.ucar.edu/netcdf-current/NetCDF-Classic-Format-Limitations.html). Note that the bug involves number of values, not bytes, so if the variable is of type integer or float, for example, it would require more than 17 Gbytes. diff --git a/docs/tutorial.dox b/docs/tutorial.dox index 0b1288a171..cc500cc8cc 100644 --- a/docs/tutorial.dox +++ b/docs/tutorial.dox @@ -173,11 +173,11 @@ C, C++, Fortran 77, Fortran 90, and Java APIs: Man pages for the C, F77, and F90 interfaces, and ncgen and ncdump, are available on the documentation page of the netCDF web site -(https://www.unidata.ucar.edu/netcdf/docs), and are installed with the +(https://docs.unidata.ucar.edu/netcdf-c), and are installed with the libraries. The latest version of all netCDF documentation can always be found at -the netCDF +the netCDF documentation page. \page netcdf_data_model The NetCDF Data Model diff --git a/examples/C/simple_xy_nc4_rd.c b/examples/C/simple_xy_nc4_rd.c index 004347fe82..151ddf5f9d 100644 --- a/examples/C/simple_xy_nc4_rd.c +++ b/examples/C/simple_xy_nc4_rd.c @@ -14,7 +14,7 @@ * to illustrate the use of the netCDF C API. * * Full documentation for netCDF can be found at: - * https://www.unidata.ucar.edu/netcdf/docs. + * https://docs.unidata.ucar.edu/netcdf-c. * * @author Ed Hartnett */ diff --git a/examples/C/simple_xy_nc4_wr.c b/examples/C/simple_xy_nc4_wr.c index 0509a30280..e5e02fb878 100644 --- a/examples/C/simple_xy_nc4_wr.c +++ b/examples/C/simple_xy_nc4_wr.c @@ -14,7 +14,7 @@ * dimensions, "x" and "y". * * Full documentation for netCDF can be found at: - * https://www.unidata.ucar.edu/netcdf/docs. + * https://docs.unidata.ucar.edu/netcdf-c. * * @author Ed Hartnett */ diff --git a/examples/C/simple_xy_rd.c b/examples/C/simple_xy_rd.c index d559af8b8b..706255018c 100644 --- a/examples/C/simple_xy_rd.c +++ b/examples/C/simple_xy_rd.c @@ -9,7 +9,7 @@ * of the netCDF C API. * * Full documentation for netCDF can be found at: - * https://www.unidata.ucar.edu/netcdf/docs. + * https://docs.unidata.ucar.edu/netcdf-c. * * @author Ed Hartnett */