13 use fckit_configuration_module,
only: fckit_configuration
16 use fckit_log_module,
only: fckit_log
29 subroutine qg_obsdb_setup_c(c_key_self,c_conf,c_winbgn,c_winend) bind(c,name='qg_obsdb_setup_f90')
34 integer(c_int),
intent(inout) :: c_key_self
35 type(c_ptr),
value,
intent(in) :: c_conf
36 type(c_ptr),
value,
intent(in) :: c_winbgn
37 type(c_ptr),
value,
intent(in) :: c_winend
40 type(fckit_configuration) :: f_conf
42 type(datetime) :: winbgn
43 type(datetime) :: winend
46 f_conf = fckit_configuration(c_conf)
50 call c_f_datetime(c_winbgn,winbgn)
51 call c_f_datetime(c_winend,winend)
64 integer(c_int),
intent(inout) :: c_key_self
81 subroutine qg_obsdb_get_c(c_key_self,lgrp,c_grp,lcol,c_col,c_key_ovec) bind(c,name='qg_obsdb_get_f90')
86 integer(c_int),
intent(in) :: c_key_self
87 integer(c_int),
intent(in) :: lgrp
88 character(kind=c_char,len=1),
intent(in) :: c_grp(lgrp+1)
89 integer(c_int),
intent(in) :: lcol
90 character(kind=c_char,len=1),
intent(in) :: c_col(lcol+1)
91 integer(c_int),
intent(in) :: c_key_ovec
96 character(len=lgrp) :: grp
97 character(len=lcol) :: col
101 call c_f_string(c_grp,grp)
102 call c_f_string(c_col,col)
111 subroutine qg_obsdb_put_c(c_key_self,lgrp,c_grp,lcol,c_col,c_key_ovec) bind(c,name='qg_obsdb_put_f90')
116 integer(c_int),
intent(in) :: c_key_self
117 integer(c_int),
intent(in) :: lgrp
118 character(kind=c_char,len=1),
intent(in) :: c_grp(lgrp+1)
119 integer(c_int),
intent(in) :: lcol
120 character(kind=c_char,len=1),
intent(in) :: c_col(lcol+1)
121 integer(c_int),
intent(in) :: c_key_ovec
126 character(len=lgrp) :: grp
127 character(len=lcol) :: col
131 call c_f_string(c_grp,grp)
132 call c_f_string(c_col,col)
146 integer(c_int),
intent(in) :: c_key_self
147 integer(c_int),
intent(in) :: lgrp
148 character(kind=c_char,len=1),
intent(in) :: c_grp(lgrp+1)
149 type(c_ptr),
intent(in),
value :: c_fields
150 type(c_ptr),
intent(in),
value :: c_times
154 character(len=lgrp) :: grp
155 type(atlas_fieldset) :: fields
159 call c_f_string(c_grp,grp)
160 fields = atlas_fieldset(c_fields)
170 subroutine qg_obsdb_generate_c(c_key_self,lgrp,c_grp,c_conf,c_bgn,c_step,ktimes,kobs) bind(c,name='qg_obsdb_generate_f90')
175 integer(c_int),
intent(in) :: c_key_self
176 integer(c_int),
intent(in) :: lgrp
177 character(kind=c_char,len=1),
intent(in) :: c_grp(lgrp+1)
178 type(c_ptr),
value,
intent(in) :: c_conf
179 type(c_ptr),
value,
intent(in) :: c_bgn
180 type(c_ptr),
value,
intent(in) :: c_step
181 integer(c_int),
intent(in) :: ktimes
182 integer(c_int),
intent(inout) :: kobs
185 type(fckit_configuration) :: f_conf
187 character(len=lgrp) :: grp
188 type(datetime) :: bgn
189 type(duration) :: step
192 f_conf = fckit_configuration(c_conf)
194 call c_f_string(c_grp,grp)
195 call c_f_datetime(c_bgn,bgn)
196 call c_f_duration(c_step,step)
204 subroutine qg_obsdb_nobs_c(c_key_self,lgrp,c_grp,kobs) bind(c,name='qg_obsdb_nobs_f90')
209 integer(c_int),
intent(in) :: c_key_self
210 integer(c_int),
intent(in) :: lgrp
211 character(kind=c_char,len=1),
intent(in) :: c_grp(lgrp+1)
212 integer(c_int),
intent(inout) :: kobs
216 character(len=lgrp) :: grp
220 call c_f_string(c_grp,grp)
subroutine qg_obsdb_nobs_c(c_key_self, lgrp, c_grp, kobs)
Get observation data size.
subroutine qg_obsdb_setup_c(c_key_self, c_conf, c_winbgn, c_winend)
Setup observation data.
subroutine qg_obsdb_delete_c(c_key_self)
Delete observation data.
subroutine qg_obsdb_locations_c(c_key_self, lgrp, c_grp, c_fields, c_times)
Get locations from observation data.
subroutine qg_obsdb_put_c(c_key_self, lgrp, c_grp, lcol, c_col, c_key_ovec)
Put observation data.
subroutine qg_obsdb_generate_c(c_key_self, lgrp, c_grp, c_conf, c_bgn, c_step, ktimes, kobs)
Generate observation data.
subroutine qg_obsdb_get_c(c_key_self, lgrp, c_grp, lcol, c_col, c_key_ovec)
Get observation data.
subroutine, public qg_obsdb_generate(self, grp, f_conf, bgn, step, ktimes, kobs)
Generate observation data.
subroutine, public qg_obsdb_put(self, grp, col, ovec)
Put observations data.
subroutine, public qg_obsdb_locations(self, grp, fields, c_times)
Get locations from observation data.
subroutine, public qg_obsdb_delete(self)
Delete observation data.
subroutine, public qg_obsdb_get(self, grp, col, ovec)
Get observation data.
type(registry_t), public qg_obsdb_registry
Linked list interface - defines registry_t type.
subroutine, public qg_obsdb_setup(self, f_conf, winbgn, winend)
Linked list implementation.
subroutine, public qg_obsdb_nobs(self, grp, kobs)
Get observation data size.
type(registry_t), public qg_obsvec_registry
Linked list interface - defines registry_t type.