Ignore:
Timestamp:
Jul 19, 2024, 10:05:57 AM (4 months ago)
Author:
abarral
Message:

[continued & end] replace netcdf by lmdz_netcdf.F90 wrapper
"use netcdf" is now only used in lmdz_netcdf.F90 (except ecrad and obsolete/)
<include "netcdf.inc"> is now likewise only used in lmdz_netcdf.F90.

systematically specify explicitely <USE lmdz_netcdf, ONLY:> (probably left some missing, to correct later on)

Further replacement of nf_put_* by nf90_put_* (same for _get_)

[minor] replace deprecated boolean operators along the way

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/tools/netcdf95/Attributes/nf95_get_missing.F90

    r4918 r5075  
    11module nf95_get_missing_m
    22
    3   use netcdf, only: nf90_noerr
     3  use lmdz_netcdf, only: nf90_noerr
    44  use nf95_get_att_m, only: nf95_get_att
    55
     
    1818  subroutine nf95_get_missing_real(ncid, varid, missing)
    1919
    20     use netcdf, only: NF90_FILL_REAL
     20    use lmdz_netcdf, only: NF90_FILL_REAL
    2121    use typesizes, only: FourByteReal
    2222
     
    4444  subroutine nf95_get_missing_dble(ncid, varid, missing)
    4545
    46     use netcdf, only: NF90_FILL_double
     46    use lmdz_netcdf, only: NF90_FILL_double
    4747    use typesizes, only: EightByteReal
    4848
     
    7070  subroutine nf95_get_missing_short_int(ncid, varid, missing)
    7171
    72     use netcdf, only: NF90_FILL_short
     72    use lmdz_netcdf, only: NF90_FILL_short
    7373    use typesizes, only: TwoByteInt
    7474
     
    9696  subroutine nf95_get_missing_int(ncid, varid, missing)
    9797
    98     use netcdf, only: NF90_FILL_INT
     98    use lmdz_netcdf, only: NF90_FILL_INT
    9999
    100100    integer, intent(in)::  ncid, varid
     
    121121  subroutine nf95_get_missing_char(ncid, varid, missing)
    122122
    123     use netcdf, only: NF90_FILL_char
     123    use lmdz_netcdf, only: NF90_FILL_char
    124124
    125125    integer, intent(in)::  ncid, varid
Note: See TracChangeset for help on using the changeset viewer.