mirror of
https://github.com/Unidata/netcdf-cxx4.git
synced 2025-02-17 18:59:31 +08:00
docs migration
This commit is contained in:
parent
e7cc5bab02
commit
8c80524fa6
1
.gitignore
vendored
1
.gitignore
vendored
@ -37,6 +37,7 @@ CMakeLists.txt.user
|
||||
scan-build
|
||||
.deps
|
||||
.libs
|
||||
.idea
|
||||
*.zip
|
||||
Makefile
|
||||
.DS_Store
|
||||
|
@ -41,15 +41,15 @@ IF(WIN32)
|
||||
SET(CPACK_NSIS_MODIFY_PATH ON)
|
||||
SET(CPACK_NSIS_DISPLAY_NAME "NetCDF ${netCDF_VERSION}")
|
||||
SET(CPACK_NSIS_PACKAGE_NAME "NetCDF ${netCDF_VERSION}")
|
||||
SET(CPACK_NSIS_HELP_LINK "http://www.unidata.ucar.edu/netcdf")
|
||||
SET(CPACK_NSIS_URL_INFO_ABOUT "http://www.unidata.ucar.edu/netcdf")
|
||||
SET(CPACK_NSIS_HELP_LINK "https://www.unidata.ucar.edu/netcdf")
|
||||
SET(CPACK_NSIS_URL_INFO_ABOUT "https://www.unidata.ucar.edu/netcdf")
|
||||
SET(CPACK_NSIS_CONTACT "support-netcdf@unidata.ucar.edu")
|
||||
SET(CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL ON)
|
||||
SET(CPACK_NSIS_MENU_LINKS
|
||||
"http://www.unidata.ucar.edu/netcdf" "Unidata Website"
|
||||
"http://www.unidata.ucar.edu/netcdf/docs" "NetCDF Stable Documentation"
|
||||
"http://www.unidata.ucar.edu/netcdf/docs/cxx4" "NetCDF CXX4 Stable Documentation"
|
||||
"http://www.unidata.ucar.edu/netcdf/docs_rc" "NetCDF Unstable Documentation")
|
||||
"https://www.unidata.ucar.edu/netcdf" "Unidata Website"
|
||||
"https://www.unidata.ucar.edu/netcdf/docs" "NetCDF Stable Documentation"
|
||||
"https://www.unidata.ucar.edu/netcdf/docs/cxx4" "NetCDF CXX4 Stable Documentation"
|
||||
"https://www.unidata.ucar.edu/netcdf/docs_rc" "NetCDF Unstable Documentation")
|
||||
|
||||
ENDIF()
|
||||
|
||||
|
@ -44,11 +44,11 @@ install-data-hook:
|
||||
@echo '| build with "make check". |'
|
||||
@echo '| |'
|
||||
@echo '| If any tests fail, please see the netCDF web site: |'
|
||||
@echo '| http://www.unidata.ucar.edu/software/netcdf/ |'
|
||||
@echo '| https://www.unidata.ucar.edu/software/netcdf/ |'
|
||||
@echo '| |'
|
||||
@echo '| NetCDF is developed and maintained at the Unidata Program |'
|
||||
@echo '| Center. Unidata provides a broad array of data and software |'
|
||||
@echo '| tools for use in geoscience education and research. |'
|
||||
@echo '| http://www.unidata.ucar.edu |'
|
||||
@echo '| https://www.unidata.ucar.edu |'
|
||||
@echo '+-------------------------------------------------------------+'
|
||||
@echo ''
|
||||
|
@ -1,10 +1,10 @@
|
||||
<hr size="2"/>
|
||||
<address style="text-align: center;">
|
||||
<a href="http://www.unidata.ucar.edu/software/netcdf/">Return to the Main Unidata NetCDF page.</a><br>
|
||||
<img src="http://www.unidata.ucar.edu/images/logos/uniLogo.png">
|
||||
<a href="https://www.unidata.ucar.edu/software/netcdf/">Return to the Main Unidata NetCDF page.</a><br>
|
||||
<img src="https://docs.unidata.ucar.edu/images/logos/uniLogo.png">
|
||||
|
||||
<address style="text-align: right;"><small>
|
||||
Generated on $datetime for $projectname. NetCDF is
|
||||
a <a href="http://www.unidata.ucar.edu/">Unidata</a> library.</small></address>
|
||||
a <a href="https://www.unidata.ucar.edu/">Unidata</a> library.</small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -8,10 +8,10 @@
|
||||
the use of the netCDF C++ API.
|
||||
|
||||
This program is part of the netCDF tutorial:
|
||||
http://www.unidata.ucar.edu/software/netcdf/docs/netcdf-tutorial
|
||||
https://www.unidata.ucar.edu/software/netcdf/docs/netcdf-tutorial
|
||||
|
||||
Full documentation of the netCDF C++ API can be found at:
|
||||
http://www.unidata.ucar.edu/software/netcdf/docs/netcdf-cxx
|
||||
https://www.unidata.ucar.edu/software/netcdf/docs/netcdf-cxx
|
||||
|
||||
$Id: pres_temp_4D_rd.cpp,v 1.5 2010/02/11 22:36:42 russ Exp $
|
||||
*/
|
||||
|
@ -6,10 +6,10 @@
|
||||
temperatures. This example demonstrates the netCDF C++ API.
|
||||
|
||||
This is part of the netCDF tutorial:
|
||||
http://www.unidata.ucar.edu/software/netcdf/docs/netcdf-tutorial
|
||||
https://www.unidata.ucar.edu/software/netcdf/docs/netcdf-tutorial
|
||||
|
||||
Full documentation of the netCDF C++ API can be found at:
|
||||
http://www.unidata.ucar.edu/software/netcdf/docs/netcdf-cxx
|
||||
https://www.unidata.ucar.edu/software/netcdf/docs/netcdf-cxx
|
||||
|
||||
$Id: pres_temp_4D_wr.cpp,v 1.6 2010/02/11 22:36:42 russ Exp $
|
||||
*/
|
||||
|
@ -8,10 +8,10 @@
|
||||
the use of the netCDF C++ API.
|
||||
|
||||
This program is part of the netCDF tutorial:
|
||||
http://www.unidata.ucar.edu/software/netcdf/docs/netcdf-tutorial
|
||||
https://www.unidata.ucar.edu/software/netcdf/docs/netcdf-tutorial
|
||||
|
||||
Full documentation of the netCDF C++ API can be found at:
|
||||
http://www.unidata.ucar.edu/software/netcdf/docs/netcdf-cxx
|
||||
https://www.unidata.ucar.edu/software/netcdf/docs/netcdf-cxx
|
||||
|
||||
$Id: pres_temp_4D_rd.cpp,v 1.5 2010/02/11 22:36:42 russ Exp $
|
||||
*/
|
||||
|
@ -6,10 +6,10 @@
|
||||
temperatures. This example demonstrates the netCDF C++ API.
|
||||
|
||||
This is part of the netCDF tutorial:
|
||||
http://www.unidata.ucar.edu/software/netcdf/docs/netcdf-tutorial
|
||||
https://www.unidata.ucar.edu/software/netcdf/docs/netcdf-tutorial
|
||||
|
||||
Full documentation of the netCDF C++ API can be found at:
|
||||
http://www.unidata.ucar.edu/software/netcdf/docs/netcdf-cxx
|
||||
https://www.unidata.ucar.edu/software/netcdf/docs/netcdf-cxx
|
||||
|
||||
$Id: pres_temp_4D_wr.cpp,v 1.6 2010/02/11 22:36:42 russ Exp $
|
||||
*/
|
||||
|
@ -8,10 +8,10 @@
|
||||
illustrate the use of the netCDF C++ API.
|
||||
|
||||
This program is part of the netCDF tutorial:
|
||||
http://www.unidata.ucar.edu/software/netcdf/docs/netcdf-tutorial
|
||||
https://www.unidata.ucar.edu/software/netcdf/docs/netcdf-tutorial
|
||||
|
||||
Full documentation of the netCDF C++ API can be found at:
|
||||
http://www.unidata.ucar.edu/software/netcdf/docs/netcdf-cxx
|
||||
https://www.unidata.ucar.edu/software/netcdf/docs/netcdf-cxx
|
||||
|
||||
$Id: sfc_pres_temp_rd.cpp,v 1.6 2010/02/11 22:36:42 russ Exp $
|
||||
*/
|
||||
|
@ -8,10 +8,10 @@
|
||||
|
||||
This example demonstrates the netCDF C++ API. This is part of the
|
||||
netCDF tutorial:
|
||||
http://www.unidata.ucar.edu/software/netcdf/docs/netcdf-tutorial
|
||||
https://www.unidata.ucar.edu/software/netcdf/docs/netcdf-tutorial
|
||||
|
||||
Full documentation of the netCDF C++ API can be found at:
|
||||
http://www.unidata.ucar.edu/software/netcdf/docs/netcdf-cxx
|
||||
https://www.unidata.ucar.edu/software/netcdf/docs/netcdf-cxx
|
||||
|
||||
$Id: sfc_pres_temp_wr.cpp,v 1.6 2010/02/11 22:36:42 russ Exp $
|
||||
*/
|
||||
|
@ -6,10 +6,10 @@
|
||||
sample data produced by simple_xy_wr.cpp.
|
||||
|
||||
This example is part of the netCDF tutorial:
|
||||
http://www.unidata.ucar.edu/software/netcdf/docs/netcdf-tutorial
|
||||
https://www.unidata.ucar.edu/software/netcdf/docs/netcdf-tutorial
|
||||
|
||||
Full documentation of the netCDF C++ API can be found at:
|
||||
http://www.unidata.ucar.edu/software/netcdf/docs/netcdf-cxx
|
||||
https://www.unidata.ucar.edu/software/netcdf/docs/netcdf-cxx
|
||||
|
||||
$Id: simple_xy_rd.cpp,v 1.5 2010/02/11 22:36:43 russ Exp $
|
||||
*/
|
||||
|
@ -7,10 +7,10 @@
|
||||
dimensions, "x" and "y", and a netCDF variable, called "data".
|
||||
|
||||
This example is part of the netCDF tutorial:
|
||||
http://www.unidata.ucar.edu/software/netcdf/docs/netcdf-tutorial
|
||||
https://www.unidata.ucar.edu/software/netcdf/docs/netcdf-tutorial
|
||||
|
||||
Full documentation of the netCDF C++ API can be found at:
|
||||
http://www.unidata.ucar.edu/software/netcdf/docs/netcdf-cxx
|
||||
https://www.unidata.ucar.edu/software/netcdf/docs/netcdf-cxx
|
||||
|
||||
$Id: simple_xy_wr.cpp,v 1.5 2010/02/11 22:36:43 russ Exp $
|
||||
*/
|
||||
|
@ -7,10 +7,10 @@
|
||||
dimensions, "x" and "y", and a netCDF variable, called "data".
|
||||
|
||||
This example is part of the netCDF tutorial:
|
||||
http://www.unidata.ucar.edu/software/netcdf/docs/netcdf-tutorial
|
||||
https://www.unidata.ucar.edu/software/netcdf/docs/netcdf-tutorial
|
||||
|
||||
Full documentation of the netCDF C++ API can be found at:
|
||||
http://www.unidata.ucar.edu/software/netcdf/docs/netcdf-cxx
|
||||
https://www.unidata.ucar.edu/software/netcdf/docs/netcdf-cxx
|
||||
|
||||
$Id: simple_xy_wr_formats.cpp,v 1.1 2010/04/09 02:15:05 russ Exp $
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user