9 #include <fckit/fctest.h>
12 testsuite(obsspace_fortran)
18 call liboops_initialise()
19 call fckit_main%init()
26 call fckit_main%final()
27 call liboops_finalise()
28 end_testsuite_finalize
31 test(test_obsspace_construct)
32 use fckit_configuration_module
33 use fckit_pathname_module,
only : fckit_pathname
37 use oops_variables_mod
38 use,
intrinsic :: iso_c_binding
41 character(len=:),
allocatable :: filename
42 type(fckit_configuration) :: config
43 type(fckit_configuration),
allocatable :: obsconfigs(:)
44 type(fckit_configuration) :: obsconfig
45 type(fckit_configuration) :: testconfig
47 character(kind=c_char,len=:),
allocatable :: winbgnstr
48 character(kind=c_char,len=:),
allocatable :: winendstr
49 type(datetime) :: winbgn, winend
51 type(c_ptr),
allocatable,
dimension(:) :: obsspace
52 integer :: nlocs, nlocs_ref, nlocs_id
53 integer :: nvars, nvars_ref
55 character(len=100) :: obsname
56 character(kind=c_char,len=:),
allocatable :: obsname_ref
57 type(oops_variables) :: vars
60 call fckit_resource(
"--config",
"", filename)
61 config = fckit_yamlconfiguration(fckit_pathname(filename))
63 call config%get_or_die(
"window begin", winbgnstr)
64 call config%get_or_die(
"window end", winendstr)
66 call datetime_create(winbgnstr, winbgn)
67 call datetime_create(winendstr, winend)
70 call config%get_or_die(
"observations", obsconfigs)
71 allocate(obsspace(
size(obsconfigs)))
72 do iobstype = 1,
size(obsconfigs)
74 call obsconfigs(iobstype)%get_or_die(
"obs space", obsconfig)
75 call obsconfigs(iobstype)%get_or_die(
"test data", testconfig)
82 call obsconfig%get_or_die(
"name", obsname_ref)
89 call testconfig%get_or_die(
"nlocs", nlocs_ref)
90 call testconfig%get_or_die(
"nvars", nvars_ref)
96 call testconfig%get_or_die(
"nvars obsvars", nvars_ref)
101 do iobstype = 1,
size(obsspace)
104 deallocate(obsspace, obsname_ref)
void check_equal(const std::string &name, const std::vector< T > &vals, const std::vector< T > &ref)
Fortran interface to ObsSpace.
type(oops_variables) function, public obsspace_obsvariables(obss)
Get obsvariables from ObsSpace.
subroutine, public obsspace_obsname(obss, obsname)
Get obsname from ObsSpace.
integer function, public obsspace_get_dim_id(obss, dim_name)
Return the ObsSpace dimension id given the dimension name.
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)
type(c_ptr) function, public obsspace_construct(c_conf, tbegin, tend)