Changeset 5099 for LMDZ6/branches/Amaury_dev/tools/netcdf95/Variables
- Timestamp:
- Jul 22, 2024, 9:29:09 PM (4 months ago)
- Location:
- LMDZ6/branches/Amaury_dev/tools/netcdf95/Variables
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Amaury_dev/tools/netcdf95/Variables/nf95_get_var.f90
r5088 r5099 1 1 module nf95_get_var_m 2 2 3 use netcdf, only: nf90_get_var, NF90_NOERR3 use netcdf, only: nf90_get_var, nf90_noerr 4 4 5 5 use nf95_abort_m, only: nf95_abort -
LMDZ6/branches/Amaury_dev/tools/netcdf95/Variables/nf95_get_var_array.h
r4918 r5099 16 16 end if 17 17 18 if (ncerr_not_opt == NF90_NOERR.and. present(new_missing)) then18 if (ncerr_not_opt == nf90_noerr .and. present(new_missing)) then 19 19 call nf95_get_missing(ncid, varid, missing) 20 20 where (values == missing) values = new_missing -
LMDZ6/branches/Amaury_dev/tools/netcdf95/Variables/nf95_get_var_scalar.h
r4918 r5099 14 14 end if 15 15 16 if (ncerr_not_opt == NF90_NOERR.and. present(new_missing)) then16 if (ncerr_not_opt == nf90_noerr .and. present(new_missing)) then 17 17 call nf95_get_missing(ncid, varid, missing) 18 18 if (values == missing) values = new_missing
Note: See TracChangeset
for help on using the changeset viewer.