gtool5 Fortran 90/95 Library 1.0.0-rc5
日本語
Loading...
Searching...
No Matches
gtdata_netcdf_file_generic.f90
Go to the documentation of this file.
1
16
55 !
56 use dc_types, only: string
58
59 implicit none
60 private
61
64 public:: gdncfileinquire
65
66 interface
67
82 subroutine gdncfileopen(fileid, filename, writable, overwrite, stat, err)
83 integer, intent(out):: fileid
84 character(len = *), intent(in):: filename
85 logical, intent(in), optional:: writable
86 logical, intent(in), optional:: overwrite
87 logical, intent(out), optional:: err
88 integer, intent(out), optional:: stat
89 end subroutine gdncfileopen
90 end interface
91
92 interface
93
104 subroutine gdncfileclose(fileid, err)
105 integer, intent(in):: fileid
106 logical, intent(out), optional:: err
107 end subroutine gdncfileclose
108 end interface
109
110 interface
111
122 subroutine gdncfilereopen(fileid, err)
123 integer, intent(in):: fileid
124 logical, intent(out), optional:: err
125 end subroutine gdncfilereopen
126 end interface
127
128 interface
129
140 integer function gdncfiledatamode(fileid) result(result)
141 integer, intent(in):: fileid
142 end function gdncfiledatamode
143 end interface
144
145 interface
146
157 integer function gdncfiledefinemode(fileid) result(result)
158 integer, intent(in):: fileid
159 end function gdncfiledefinemode
160 end interface
161
162 interface
163
174 subroutine gdncfilesync(fileid, stat)
175 integer, intent(in), optional:: fileid
176 integer, intent(out), optional:: stat
177 end subroutine gdncfilesync
178 end interface
179
195 subroutine gdncfileinquirename(fileid, name)
196 integer, intent(in):: fileid
197 character(len = *), intent(out):: name
198 end subroutine gdncfileinquirename
199 end interface
200
subroutine gdncfileinquirename(fileid, name)
Not public, so not placed in gtdata_netcdf_generic
Debug tracing module.
Definition dc_trace.f90:150
subroutine, public dbgmessage(fmt, i, r, d, l, n, c1, c2, c3, ca)
Definition dc_trace.f90:680
subroutine, public beginsub(name, fmt, i, r, d, l, n, c1, c2, c3, ca, version)
Definition dc_trace.f90:476
subroutine, public endsub(name, fmt, i, r, d, l, n, c1, c2, c3, ca)
Definition dc_trace.f90:599
Provides kind type parameter values.
Definition dc_types.f90:55
integer, parameter, public string
Character length for string
Definition dc_types.f90:137