Changeset 5099 for LMDZ6/branches/Amaury_dev/tools/netcdf95
- Timestamp:
- Jul 22, 2024, 9:29:09 PM (4 months ago)
- Location:
- LMDZ6/branches/Amaury_dev/tools/netcdf95
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Amaury_dev/tools/netcdf95/Datasets/nf95_find_coord.f90
r5088 r5099 15 15 ! attribute "std_name". 16 16 17 use netcdf, only: NF90_MAX_NAME, NF90_NOERR17 use netcdf, only: NF90_MAX_NAME, nf90_noerr 18 18 use nf95_get_att_m, only: nf95_get_att 19 19 use nf95_inq_varid_m, only: nf95_inq_varid … … 80 80 call nf95_inquire_dimension(ncid, dimid_local, name_local) 81 81 call nf95_inq_varid(ncid, name_local, varid_local, ncerr) 82 if (ncerr == NF90_NOERR) then82 if (ncerr == nf90_noerr) then 83 83 call nf95_inquire_variable(ncid, varid_local, dimids=dimids) 84 84 if (size(dimids) == 1) then … … 86 86 ! We have found a coordinate 87 87 call nf95_get_att(ncid, varid_local, "units", values, ncerr) 88 if (ncerr == NF90_NOERR)then88 if (ncerr == nf90_noerr)then 89 89 if (exact) then 90 90 found = any(values == units) -
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.