- Timestamp:
- Jul 19, 2024, 10:05:57 AM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/tools/netcdf95/Attributes/nf95_get_missing.F90
r4918 r5075 1 1 module nf95_get_missing_m 2 2 3 use netcdf, only: nf90_noerr3 use lmdz_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 netcdf, only: NF90_FILL_REAL20 use lmdz_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 netcdf, only: NF90_FILL_double46 use lmdz_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 netcdf, only: NF90_FILL_short72 use lmdz_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 netcdf, only: NF90_FILL_INT98 use lmdz_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 netcdf, only: NF90_FILL_char123 use lmdz_netcdf, only: NF90_FILL_char 124 124 125 125 integer, intent(in):: ncid, varid
Note: See TracChangeset
for help on using the changeset viewer.