Changeset 5088 for LMDZ6/branches/Amaury_dev/tools/netcdf95/Attributes
- Timestamp:
- Jul 20, 2024, 4:30:31 PM (6 months ago)
- Location:
- LMDZ6/branches/Amaury_dev/tools/netcdf95/Attributes
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Amaury_dev/tools/netcdf95/Attributes/nf95_copy_att.f90
r5075 r5088 8 8 subroutine nf95_copy_att(ncid_in, varid_in, name, ncid_out, varid_out, ncerr) 9 9 10 use lmdz_netcdf, only: nf90_copy_att10 use netcdf, only: nf90_copy_att 11 11 12 12 use nf95_abort_m, only: nf95_abort -
LMDZ6/branches/Amaury_dev/tools/netcdf95/Attributes/nf95_get_att.f90
r5075 r5088 2 2 3 3 use nf95_abort_m, only: nf95_abort 4 use lmdz_netcdf, only: nf90_get_att, nf90_noerr4 use netcdf, only: nf90_get_att, nf90_noerr 5 5 use nf95_inquire_attribute_m, only: nf95_inquire_attribute 6 6 use nf95_constants, only: nf95_noerr -
LMDZ6/branches/Amaury_dev/tools/netcdf95/Attributes/nf95_get_missing.F90
r5075 r5088 1 1 module nf95_get_missing_m 2 2 3 use lmdz_netcdf, only: nf90_noerr3 use netcdf, only: nf90_noerr 4 4 use nf95_get_att_m, only: nf95_get_att 5 5 … … 18 18 subroutine nf95_get_missing_real(ncid, varid, missing) 19 19 20 use lmdz_netcdf, only: NF90_FILL_REAL20 use netcdf, only: NF90_FILL_REAL 21 21 use typesizes, only: FourByteReal 22 22 … … 44 44 subroutine nf95_get_missing_dble(ncid, varid, missing) 45 45 46 use lmdz_netcdf, only: NF90_FILL_double46 use netcdf, only: NF90_FILL_double 47 47 use typesizes, only: EightByteReal 48 48 … … 70 70 subroutine nf95_get_missing_short_int(ncid, varid, missing) 71 71 72 use lmdz_netcdf, only: NF90_FILL_short72 use netcdf, only: NF90_FILL_short 73 73 use typesizes, only: TwoByteInt 74 74 … … 96 96 subroutine nf95_get_missing_int(ncid, varid, missing) 97 97 98 use lmdz_netcdf, only: NF90_FILL_INT98 use netcdf, only: NF90_FILL_INT 99 99 100 100 integer, intent(in):: ncid, varid … … 121 121 subroutine nf95_get_missing_char(ncid, varid, missing) 122 122 123 use lmdz_netcdf, only: NF90_FILL_char123 use netcdf, only: NF90_FILL_char 124 124 125 125 integer, intent(in):: ncid, varid -
LMDZ6/branches/Amaury_dev/tools/netcdf95/Attributes/nf95_inquire_attribute.f90
r5075 r5088 10 10 11 11 use nf95_abort_m, only: nf95_abort 12 use lmdz_netcdf, only: nf90_inquire_attribute12 use netcdf, only: nf90_inquire_attribute 13 13 use nf95_constants, only: nf95_noerr 14 14 -
LMDZ6/branches/Amaury_dev/tools/netcdf95/Attributes/nf95_put_att.f90
r5075 r5088 1 1 module nf95_put_att_m 2 2 3 use lmdz_netcdf, only: nf90_put_att3 use netcdf, only: nf90_put_att 4 4 use nf95_abort_m, only: nf95_abort 5 5 use nf95_constants, only: nf95_noerr
Note: See TracChangeset
for help on using the changeset viewer.