• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

app/H03-May-2022-2,7712,289

config/H29-Oct-2021-16,78212,565

doc/H03-May-2022-

examples/H03-May-2022-3,8262,994

interfaces/H03-May-2022-2,7602,285

m4/H29-Oct-2021-12,94511,893

src/H03-May-2022-170,427126,178

tables/H29-Oct-2021-10667

tests/H03-May-2022-4,9424,110

util/H29-Oct-2021-322158

AUTHORSH A D18-Nov-2020398 98

COPYINGH A D15-Sep-20211.4 KiB126

ChangeLogH A D21-Oct-202172.3 KiB2,7631,616

INSTALLH A D18-Nov-20209 KiB230175

Makefile.amH A D18-Nov-2020553 2315

Makefile.inH A D03-May-202230.1 KiB959854

NEWSH A D21-Oct-202110.3 KiB267207

READMEH A D15-Sep-20212.5 KiB5940

acinclude.m4H A D18-Nov-2020193 87

aclocal.m4H A D21-Oct-202144.6 KiB1,2351,123

cdi.settings.inH A D13-Aug-20211.9 KiB7271

configureH A D21-Oct-20211.1 MiB36,88231,579

configure.acH A D21-Oct-202118.7 KiB464438

README

1
2CDI - Climate Data Interface
3----------------------------
4
5     This package contains the source code for the CDI library from
6     the Max-Planck-Institute for Meteorology.
7     CDI is a C and Fortran Interface to access Climate model Data.
8     Supported data formats are GRIB, netCDF, SERVICE, EXTRA and IEG.
9
10     See the AUTHORS file for the list of authors.
11
12     CDI is licensed under the 3-clause BSD License. This License covers all files in the CDI repository
13     unless stated otherwise. Read the file LICENSE in the source distribution for details.
14
15     MPI-M makes no representations or warranties of any kind concerning the Software and any results
16     (including but not limited to any data) generated by use of the Software (hereinafter "Results"),
17     express or implied, and the absence of any legal or actual defects, whether discoverable or not.
18     The use of the Software and the Results is at your own risk.
19
20     Specifically, and not to limit the foregoing, MPI-M makes no representations or warranties
21       (i) regarding the fitness for a particular purpose of the Software and the Results,
22      (ii) that the use of the Software and the Results will not infringe any patents or other
23           intellectual property rights of any third party, and
24     (iii) that the use of the Software and the Results will not cause any damages of any kind
25           to you or to any third party.
26
27Documentation:
28
29     CDI C Manual:       ./doc/cdi_cman.pdf
30     CDI Fortran Manual: ./doc/cdi_fman.pdf
31
32Installation:
33
34     1. Run ./configure, with some options if you wish. The standard
35        options are documented in the INSTALL file. The configuration
36        script has some more options; type 'configure -h' to see them.
37        The most interesting ones are the usual
38        --prefix=<installation directory> and
39        --with-netcdf=<netCDF root directory> to enable netCDF support.
40
41     2. Do "make" to compile the library.
42
43     3. (Optional) Do "make install", possibly as root if the destination
44        permissions require that. This installs CDI in the directory
45        specified during configuration. The default prefix is /usr/local.
46
47Porting:
48
49     This library was designed for maximum portability. It is written entirely
50     in ANSI C99, and will compile on most UNIX platforms.
51
52     The FORTRAN 77 interface is using the cfortran.h macros from
53     http://www-zeus.desy.de/~burow/cfortran/
54
55Contact:
56
57     Send questions, comments and bug reports to <https://mpimet.mpg.de/cdi>
58
59