source: LMDZ5/trunk/tools/Max_diff_nc_with_lib/NetCDF95/netcdf95.f90 @ 1907

Last change on this file since 1907 was 1907, checked in by lguez, 10 years ago

Added a copyright property to every file of the distribution, except
for the fcm files (which have their own copyright). Use svn propget on
a file to see the copyright. For instance:

$ svn propget copyright libf/phylmd/physiq.F90
Name of program: LMDZ
Creation date: 1984
Version: LMDZ5
License: CeCILL version 2
Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
See the license file in the root directory

Also added the files defining the CeCILL version 2 license, in French
and English, at the top of the LMDZ tree.

  • Property copyright set to
    Name of program: LMDZ
    Creation date: 1984
    Version: LMDZ5
    License: CeCILL version 2
    Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
    See the license file in the root directory
File size: 524 bytes
Line 
1module netcdf95
2
3  ! Author: Lionel GUEZ
4
5  use find_coord_m
6  use handle_err_m
7  use nf95_close_m
8  use nf95_copy_att_m
9  use nf95_create_m
10  use nf95_def_dim_m
11  use nf95_def_var_m
12  use nf95_enddef_m
13  use nf95_get_att_m
14  use nf95_get_var_m
15  use nf95_gw_var_m
16  use nf95_inq_dimid_m
17  use nf95_inq_varid_m
18  use nf95_inquire_attribute_m
19  use nf95_inquire_dimension_m
20  use nf95_inquire_m
21  use nf95_inquire_variable_m
22  use nf95_open_m
23  use nf95_put_att_m
24  use nf95_put_var_m
25  use nf95_redef_m
26
27end module netcdf95
Note: See TracBrowser for help on using the repository browser.