Loading...
Searching...
No Matches
gdncfiledatamode.f90
Go to the documentation of this file.
1integer function gdncfiledatamode(fileid) result(result)
2 use netcdf, only: nf90_enddef, nf90_enotindefine, nf90_noerr
3 use dc_trace, only: dbgmessage
4 implicit none
5 integer, intent(in):: fileid
6 character(*), parameter:: subname = "GDNcFileDataMode"
7continue
8 call dbgmessage(subname)
9 result = nf90_enddef(fileid)
10 if (result == nf90_enotindefine) result = nf90_noerr
11end function gdncfiledatamode
integer function gdncfiledatamode(fileid)