| 37 | | '''Note''': The implementation uses the NetCDF library for file outputs. If the compilation above fails, please ensure the netCDF-library is installed. On computers running Linux, netCDF is usually available as a package of the operating system. On MacOS one can install the netcdf library e.g. using Homebrew or !MacPorts. NetCDF is a self-describing binary output format, but here it is not required that you know details about it. Anyway, if you like to look 'into' a NetCDF file, please try to use `ncdump FILENAME | less`. |
| | 37 | '''Notes''': |
| | 38 | * The implementation uses the NetCDF library for file outputs. If the compilation above fails, please ensure the netCDF-library is installed und that the paths to the library and include file and the actual libries are correctly specified (see next point). On computers running Linux, netCDF is usually available as a package of the operating system. On MacOS one can install the netcdf library e.g. using Homebrew or !MacPorts. NetCDF is a self-describing binary output format, but here it is not required that you know details about it. Anyway, if you like to look 'into' a NetCDF file, please try to use `ncdump FILENAME | less`. |
| | 39 | * The netcdf include file and library are specified at the end of each make include file as `NC_INC` for the include file and `NC_LIB` for the library. In some files, these specifications are empty. The specifications should look like |
| | 40 | {{{ |
| | 41 | NC_LIB = -L/usr/local/lib -lnetcdff -lnetcdf |
| | 42 | NC_INC = -I/usr/local/include |
| | 43 | }}} |