11 use,
intrinsic :: iso_c_binding
40 #include "ioda/obsspace_interface.f"
64 use fckit_configuration_module,
only: fckit_configuration
65 use datetime_mod,
only: datetime
67 type(fckit_configuration),
intent(in) :: c_conf
68 type(datetime),
intent(in) :: tbegin, tend
69 type(c_ptr) :: c_tbegin, c_tend
71 call f_c_datetime(tbegin, c_tbegin)
72 call f_c_datetime(tend, c_tend)
80 type(c_ptr),
intent(inout) :: c_obss
94 type(c_ptr),
value,
intent(in) :: obss
95 character(*),
intent(inout) :: obsname
97 integer(c_size_t) :: lcname
101 character(kind=c_char,len=1) :: cname(101)
104 call c_f_string(cname, obsname)
105 obsname = obsname(1:lcname)
114 use oops_variables_mod
116 type(c_ptr),
value,
intent(in) :: obss
126 type(c_ptr),
intent(in) :: c_obss
137 type(c_ptr),
intent(in) :: c_obss
148 type(c_ptr),
intent(in) :: c_obss
159 type(c_ptr),
intent(in) :: c_obss
170 type(c_ptr),
intent(in) :: c_obss
183 type(c_ptr),
value,
intent(in) :: obss
184 integer,
intent(in) :: dim_id
185 character(*),
intent(inout) :: dim_name
187 integer(c_size_t) :: len_dim_name
191 character(kind=c_char,len=1) :: c_dim_name(101)
194 call c_f_string(c_dim_name, dim_name)
195 dim_name = dim_name(1:len_dim_name)
204 type(c_ptr),
intent(in) :: obss
205 integer,
intent(in) :: dim_id
217 type(c_ptr),
intent(in) :: obss
218 character(len=*),
intent(in) :: dim_name
220 character(kind=c_char,len=1),
allocatable :: c_dim_name(:)
221 call f_c_string(dim_name, c_dim_name)
230 use fckit_mpi_module,
only: fckit_mpi_comm
234 type(c_ptr),
intent(in) :: obss
235 type(fckit_mpi_comm),
intent(out) :: f_comm
239 character(kind=c_char,len=1) :: cname(101)
240 character(len=100) :: name
241 character(len=:),
allocatable :: name_comm
244 call c_f_string(cname, name)
246 name_comm = name(1:lcname)
247 f_comm = fckit_mpi_comm(name_comm)
254 type(c_ptr),
intent(in) :: obss
255 integer(c_size_t),
intent(inout) :: recnum(:)
257 integer(c_size_t) :: length
259 length =
size(recnum)
267 type(c_ptr),
intent(in) :: obss
268 integer(c_size_t),
intent(inout) :: indx(:)
270 integer(c_size_t) :: length
282 type(c_ptr),
intent(in) :: c_obss
283 character(len=*),
intent(in) :: group
284 character(len=*),
intent(in) :: vname
286 character(kind=c_char,len=1),
allocatable :: c_group(:), c_vname(:)
288 call f_c_string(group, c_group)
289 call f_c_string(vname, c_vname)
299 type(c_ptr),
value,
intent(in) :: obss
300 character(len=*),
intent(in) :: group
301 character(len=*),
intent(in) :: vname
302 integer(c_int32_t),
intent(inout) :: vect(:)
303 integer(c_int),
intent(in),
optional :: chan_select(:)
305 character(kind=c_char,len=1),
allocatable :: c_group(:), c_vname(:)
306 integer(c_size_t) :: length
307 integer(c_size_t) :: len_cs
308 integer(c_int) :: dummy_chan_select(1)
311 call f_c_string(group, c_group)
312 call f_c_string(vname, c_vname)
314 if (
present(chan_select))
then
315 len_cs =
size(chan_select)
323 deallocate(c_group, c_vname)
333 type(c_ptr),
value,
intent(in) :: obss
334 character(len=*),
intent(in) :: group
335 character(len=*),
intent(in) :: vname
336 integer(c_int64_t),
intent(inout) :: vect(:)
337 integer(c_int),
intent(in),
optional :: chan_select(:)
339 character(kind=c_char,len=1),
allocatable :: c_group(:), c_vname(:)
340 integer(c_size_t) :: length
341 integer(c_size_t) :: len_cs
342 integer(c_int) :: dummy_chan_select(1)
345 call f_c_string(group, c_group)
346 call f_c_string(vname, c_vname)
348 if (
present(chan_select))
then
349 len_cs =
size(chan_select)
357 deallocate(c_group, c_vname)
366 type(c_ptr),
value,
intent(in) :: obss
367 character(len=*),
intent(in) :: group
368 character(len=*),
intent(in) :: vname
369 real(c_float),
intent(inout) :: vect(:)
370 integer(c_int),
intent(in),
optional :: chan_select(:)
372 character(kind=c_char,len=1),
allocatable :: c_group(:), c_vname(:)
373 integer(c_size_t) :: length
374 integer(c_size_t) :: len_cs
375 integer(c_int) :: dummy_chan_select(1)
378 call f_c_string(group, c_group)
379 call f_c_string(vname, c_vname)
381 if (
present(chan_select))
then
382 len_cs =
size(chan_select)
390 deallocate(c_group, c_vname)
399 type(c_ptr),
value,
intent(in) :: obss
400 character(len=*),
intent(in) :: group
401 character(len=*),
intent(in) :: vname
402 real(c_double),
intent(inout) :: vect(:)
404 integer(c_int),
intent(in),
optional :: chan_select(:)
406 character(kind=c_char,len=1),
allocatable :: c_group(:), c_vname(:)
407 integer(c_size_t) :: length
408 integer(c_size_t) :: len_cs
409 integer(c_int) :: dummy_chan_select(1)
412 call f_c_string(group, c_group)
413 call f_c_string(vname, c_vname)
416 if (
present(chan_select))
then
417 len_cs =
size(chan_select)
425 deallocate(c_group, c_vname)
434 type(c_ptr),
value,
intent(in) :: obss
435 character(len=*),
intent(in) :: group
436 character(len=*),
intent(in) :: vname
437 type(datetime),
intent(inout) :: vect(:)
438 integer(c_int),
intent(in),
optional :: chan_select(:)
440 integer(c_size_t) :: length, i
441 integer(c_size_t) :: len_cs
442 integer(c_int) :: dummy_chan_select(1)
443 character(kind=c_char,len=1),
allocatable :: c_group(:), c_vname(:)
444 integer(c_int32_t),
dimension(:),
allocatable :: date
445 integer(c_int32_t),
dimension(:),
allocatable :: time
446 character(len=20) :: fstring
448 call f_c_string(group, c_group)
449 call f_c_string(vname, c_vname)
452 allocate(date(length), time(length))
454 if (
present(chan_select))
then
455 len_cs =
size(chan_select)
461 0_c_size_t, dummy_chan_select)
466 write(fstring,
"(i4.4, a, i2.2, a, i2.2, a, i2.2, a, i2.2, a, i2.2, a)") &
467 date(i)/10000,
'-', mod(date(i), 10000)/100,
'-', mod(mod(date(i), 10000), 100),
'T', &
468 time(i)/10000,
':', mod(time(i), 10000)/100,
':', mod(mod(time(i), 10000), 100),
'Z'
469 call datetime_create(fstring, vect(i))
473 deallocate(date, time)
482 type(c_ptr),
value,
intent(in) :: obss
483 character(len=*),
intent(in) :: group
484 character(len=*),
intent(in) :: vname
485 integer(c_int32_t),
intent(in) :: vect(:)
486 integer(c_int),
intent(in),
optional :: dim_ids(:)
488 character(kind=c_char,len=1),
allocatable :: c_group(:), c_vname(:)
489 integer(c_size_t) :: length
490 integer(c_size_t) :: ndims
491 integer(c_int) :: fallback_dim_ids(1)
494 call f_c_string(group, c_group)
495 call f_c_string(vname, c_vname)
497 if (
present(dim_ids))
then
498 ndims =
size(dim_ids)
506 deallocate(c_group, c_vname)
515 type(c_ptr),
value,
intent(in) :: obss
516 character(len=*),
intent(in) :: group
517 character(len=*),
intent(in) :: vname
518 integer(c_int64_t),
intent(in) :: vect(:)
519 integer(c_int),
intent(in),
optional :: dim_ids(:)
521 character(kind=c_char,len=1),
allocatable :: c_group(:), c_vname(:)
522 integer(c_size_t) :: length
523 integer(c_size_t) :: ndims
524 integer(c_int) :: fallback_dim_ids(1)
527 call f_c_string(group, c_group)
528 call f_c_string(vname, c_vname)
531 if (
present(dim_ids))
then
532 ndims =
size(dim_ids)
540 deallocate(c_group, c_vname)
549 type(c_ptr),
value,
intent(in) :: obss
550 character(len=*),
intent(in) :: group
551 character(len=*),
intent(in) :: vname
552 real(c_float),
intent(in) :: vect(:)
553 integer(c_int),
intent(in),
optional :: dim_ids(:)
555 character(kind=c_char,len=1),
allocatable :: c_group(:), c_vname(:)
556 integer(c_size_t) :: length
557 integer(c_size_t) :: ndims
558 integer(c_int) :: fallback_dim_ids(1)
561 call f_c_string(group, c_group)
562 call f_c_string(vname, c_vname)
564 ndims =
size(dim_ids)
566 if (
present(dim_ids))
then
567 ndims =
size(dim_ids)
575 deallocate(c_group, c_vname)
584 type(c_ptr),
value,
intent(in) :: obss
585 character(len=*),
intent(in) :: group
586 character(len=*),
intent(in) :: vname
587 real(c_double),
intent(in) :: vect(:)
588 integer(c_int),
intent(in),
optional :: dim_ids(:)
590 character(kind=c_char,len=1),
allocatable :: c_group(:), c_vname(:)
591 integer(c_size_t) :: length
592 integer(c_size_t) :: ndims
593 integer(c_int) :: fallback_dim_ids(1)
596 call f_c_string(group, c_group)
597 call f_c_string(vname, c_vname)
600 if (
present(dim_ids))
then
601 ndims =
size(dim_ids)
609 deallocate(c_group, c_vname)
Define interface for C++ ObsSpace code called from Fortran.
Fortran interface to ObsSpace.
type(oops_variables) function, public obsspace_obsvariables(obss)
Get obsvariables from ObsSpace.
integer function, public obsspace_get_gnlocs(c_obss)
Return the number of observational locations in the input obs file.
subroutine obsspace_put_db_real64(obss, group, vname, vect, dim_ids)
Store a vector in ObsSpace database.
integer(c_int) function, public obsspace_get_nchans_dim_id()
Return the identifier of the nchans dimension.
subroutine, public obsspace_obsname(obss, obsname)
Get obsname from ObsSpace.
subroutine obsspace_get_db_int64(obss, group, vname, vect, chan_select)
Get a variable from the ObsSapce database.
subroutine obsspace_get_db_real64(obss, group, vname, vect, chan_select)
Get a variable from the ObsSapce database.
integer function, public obsspace_get_nlocs(c_obss)
Return the number of observational locations in the obs space.
integer(c_int) function, public obsspace_get_nlocs_dim_id()
Return the identifier of the nlocs dimension.
integer function, public obsspace_get_dim_id(obss, dim_name)
Return the ObsSpace dimension id given the dimension name.
subroutine, public obsspace_get_index(obss, indx)
Get the index vector.
subroutine, public obsspace_get_dim_name(obss, dim_id, dim_name)
Return the ObsSpace dimension name given the dimension id.
integer function, public obsspace_get_nchans(c_obss)
Return the number of channels in obs space (zero if conventional obs type)
subroutine obsspace_get_db_int32(obss, group, vname, vect, chan_select)
Get a variable from the ObsSapce database.
integer function, public obsspace_get_nrecs(c_obss)
Return the number of observational records (profiles)
subroutine obsspace_put_db_real32(obss, group, vname, vect, dim_ids)
Store a vector in ObsSpace database.
subroutine obsspace_get_db_datetime(obss, group, vname, vect, chan_select)
Get datetime from the ObsSapce database.
subroutine, public obsspace_get_recnum(obss, recnum)
Get the record number vector.
subroutine obsspace_put_db_int64(obss, group, vname, vect, dim_ids)
Store a vector in ObsSpace database.
subroutine obsspace_get_db_real32(obss, group, vname, vect, chan_select)
Get a variable from the ObsSapce database.
logical function, public obsspace_has(c_obss, group, vname)
Return true if variable exists in database.
subroutine obsspace_put_db_int32(obss, group, vname, vect, dim_ids)
Store a vector in ObsSpace database.
integer function, public obsspace_get_nvars(c_obss)
Return the number of observational variables.
integer function, public obsspace_get_dim_size(obss, dim_id)
Return the size of the ObsSpace dimension given the dimension id.
subroutine, public obsspace_destruct(c_obss)
subroutine, public obsspace_get_comm(obss, f_comm)
Return the name and name length of obsspace communicator.
type(c_ptr) function, public obsspace_construct(c_conf, tbegin, tend)