OOPS
qg_obsdb_mod Module Reference

Data Types

type  column_data
 
type  group_data
 
type  qg_obsdb
 

Functions/Subroutines

subroutine, public qg_obsdb_setup (self, f_conf, winbgn, winend)
 Linked list implementation. More...
 
subroutine, public qg_obsdb_delete (self)
 Delete observation data. More...
 
subroutine, public qg_obsdb_get (self, grp, col, ovec)
 Get observation data. More...
 
subroutine, public qg_obsdb_put (self, grp, col, ovec)
 Put observations data. More...
 
subroutine, public qg_obsdb_locations (self, grp, fields, c_times)
 Get locations from observation data. More...
 
subroutine, public qg_obsdb_generate (self, grp, f_conf, bgn, step, ktimes, kobs)
 Generate observation data. More...
 
subroutine, public qg_obsdb_nobs (self, grp, kobs)
 Get observation data size. More...
 
subroutine qg_obsdb_read (self, winbgn, winend)
 Read observation data. More...
 
subroutine qg_obsdb_write (self)
 Write observation data. More...
 
subroutine qg_obsdb_find_group (self, grp, find)
 Find observation data group. More...
 
subroutine qg_obsdb_find_column (grp, col, find)
 Find observation data column. More...
 
subroutine qg_obsdb_generate_locations (nlocs, ntimes, bgn, step, times, obsloc)
 Generate random locations. More...
 
subroutine qg_obsdb_create (self, grp, times, locs)
 Create observation data. More...
 

Variables

integer, parameter rseed = 1
 Random seed (for reproducibility) More...
 
type(registry_t), public qg_obsdb_registry
 Linked list interface - defines registry_t type. More...
 

Function/Subroutine Documentation

◆ qg_obsdb_create()

subroutine qg_obsdb_mod::qg_obsdb_create ( type(qg_obsdb), intent(inout)  self,
character(len=*), intent(in)  grp,
type(datetime), dimension(:), intent(in)  times,
type(qg_obsvec), intent(in)  locs 
)
private

Create observation data.

Parameters
[in,out]selfObservation data
[in]grpGroup
[in]timesTime-slots
[in]locsLocations

Definition at line 683 of file qg_obsdb_mod.F90.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ qg_obsdb_delete()

subroutine, public qg_obsdb_mod::qg_obsdb_delete ( type(qg_obsdb), intent(inout)  self)

Delete observation data.

Parameters
[in,out]selfObservation data

Definition at line 121 of file qg_obsdb_mod.F90.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ qg_obsdb_find_column()

subroutine qg_obsdb_mod::qg_obsdb_find_column ( type(group_data), intent(in)  grp,
character(len=*), intent(in)  col,
type(column_data), intent(inout), pointer  find 
)
private

Find observation data column.

Parameters
[in]grpObservation data
[in]colColumn
[in,out]findResult

Definition at line 614 of file qg_obsdb_mod.F90.

Here is the caller graph for this function:

◆ qg_obsdb_find_group()

subroutine qg_obsdb_mod::qg_obsdb_find_group ( type(qg_obsdb), intent(in)  self,
character(len=*), intent(in)  grp,
type(group_data), intent(inout), pointer  find 
)
private

Find observation data group.

Parameters
[in]selfObservation data
[in]grpGroup
[in,out]findResult

Definition at line 593 of file qg_obsdb_mod.F90.

Here is the caller graph for this function:

◆ qg_obsdb_generate()

subroutine, public qg_obsdb_mod::qg_obsdb_generate ( type(qg_obsdb), intent(inout)  self,
character(len=*), intent(in)  grp,
type(fckit_configuration), intent(in)  f_conf,
type(datetime), intent(in)  bgn,
type(duration), intent(in)  step,
integer, intent(in)  ktimes,
integer, intent(inout)  kobs 
)

Generate observation data.

Parameters
[in,out]selfObservation data
[in]grpGroup
[in]f_confFCKIT configuration
[in]bgnStart time
[in]stepTime-step
[in]ktimesNumber of time-slots
[in,out]kobsNumber of observations

Definition at line 313 of file qg_obsdb_mod.F90.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ qg_obsdb_generate_locations()

subroutine qg_obsdb_mod::qg_obsdb_generate_locations ( integer, intent(in)  nlocs,
integer, intent(in)  ntimes,
type(datetime), intent(in)  bgn,
type(duration), intent(in)  step,
type(datetime), dimension(nlocs*ntimes), intent(inout)  times,
type(qg_obsvec), intent(inout)  obsloc 
)
private

Generate random locations.

Parameters
[in]nlocsNumber of locations
[in]ntimesNumber of time-slots
[in]bgnStart time
[in]stepTime-step
[in,out]timesTime-slots
[in,out]obslocObservation locations

Definition at line 635 of file qg_obsdb_mod.F90.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ qg_obsdb_get()

subroutine, public qg_obsdb_mod::qg_obsdb_get ( type(qg_obsdb), intent(in)  self,
character(len=*), intent(in)  grp,
character(len=*), intent(in)  col,
type(qg_obsvec), intent(inout)  ovec 
)

Get observation data.

Parameters
[in]selfObservation data
[in]grpGroup
[in]colColumn
[in,out]ovecObservation vector

Definition at line 156 of file qg_obsdb_mod.F90.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ qg_obsdb_locations()

subroutine, public qg_obsdb_mod::qg_obsdb_locations ( type(qg_obsdb), intent(in)  self,
character(len=*), intent(in)  grp,
type(atlas_fieldset), intent(inout)  fields,
type(c_ptr), intent(in), value  c_times 
)

Get locations from observation data.

Parameters
[in]selfObservation data
[in]grpGroup
[in,out]fieldsLocations FieldSet
[in]c_timespointer to times array in C++

Definition at line 260 of file qg_obsdb_mod.F90.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ qg_obsdb_nobs()

subroutine, public qg_obsdb_mod::qg_obsdb_nobs ( type(qg_obsdb), intent(in)  self,
character(len=*), intent(in)  grp,
integer, intent(inout)  kobs 
)

Get observation data size.

Parameters
[in]selfObservation data
[in]grpGroup
[in,out]kobsNumber of observations

Definition at line 360 of file qg_obsdb_mod.F90.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ qg_obsdb_put()

subroutine, public qg_obsdb_mod::qg_obsdb_put ( type(qg_obsdb), intent(inout)  self,
character(len=*), intent(in)  grp,
character(len=*), intent(in)  col,
type(qg_obsvec), intent(in)  ovec 
)

Put observations data.

Parameters
[in,out]selfObservation data
[in]grpGroup
[in]colColumn
[in]ovecObservation vector

Definition at line 206 of file qg_obsdb_mod.F90.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ qg_obsdb_read()

subroutine qg_obsdb_mod::qg_obsdb_read ( type(qg_obsdb), intent(inout)  self,
type(datetime), intent(in)  winbgn,
type(datetime), intent(in)  winend 
)
private

Read observation data.

Parameters
[in,out]selfObservation data
[in]winbgnStart of window
[in]winendEnd of window

Definition at line 387 of file qg_obsdb_mod.F90.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ qg_obsdb_setup()

subroutine, public qg_obsdb_mod::qg_obsdb_setup ( type(qg_obsdb), intent(inout)  self,
type(fckit_configuration), intent(in)  f_conf,
type(datetime), intent(in)  winbgn,
type(datetime), intent(in)  winend 
)

Linked list implementation.

Setup observation data

Parameters
[in,out]selfObservation data
[in]f_confFCKIT configuration
[in]winbgnStart of window
[in]winendEnd of window

Definition at line 75 of file qg_obsdb_mod.F90.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ qg_obsdb_write()

subroutine qg_obsdb_mod::qg_obsdb_write ( type(qg_obsdb), intent(in)  self)
private

Write observation data.

Parameters
[in]selfObservation data

Definition at line 524 of file qg_obsdb_mod.F90.

Here is the call graph for this function:
Here is the caller graph for this function:

Variable Documentation

◆ qg_obsdb_registry

type(registry_t), public qg_obsdb_mod::qg_obsdb_registry

Linked list interface - defines registry_t type.

Global registry

Definition at line 65 of file qg_obsdb_mod.F90.

◆ rseed

integer, parameter qg_obsdb_mod::rseed = 1
private

Random seed (for reproducibility)

Definition at line 35 of file qg_obsdb_mod.F90.