OOPS
qg_locs_mod.F90
Go to the documentation of this file.
1 ! (C) Copyright 2009-2016 ECMWF.
2 !
3 ! This software is licensed under the terms of the Apache Licence Version 2.0
4 ! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
5 ! In applying this licence, ECMWF does not waive the privileges and immunities
6 ! granted to it by virtue of its status as an intergovernmental organisation nor
7 ! does it submit to any jurisdiction.
8 
9 module qg_locs_mod
10 
11 use atlas_module, only: atlas_field
12 use iso_c_binding
13 use kinds
14 use datetime_mod
15 
16 implicit none
17 private
18 public :: qg_locs
19 ! ------------------------------------------------------------------------------
20 integer,parameter :: rseed = 1 !< Random seed (for reproducibility)
21 
22 type :: qg_locs
23  type(c_ptr), private :: ptr
24 contains
25 procedure, public :: nlocs => locs_nlocs
26 procedure, public :: lonlat => locs_lonlat
27 procedure, public :: altitude => locs_altitude
28 procedure, public :: times => locs_times
29 end type qg_locs
30 
31 interface qg_locs
32  module procedure ctor_from_ptr
33 end interface
34 
35 #include "qg_locs_interface.f"
36 
37 ! ------------------------------------------------------------------------------
38 contains
39 ! ------------------------------------------------------------------------------
40 ! Public
41 ! ------------------------------------------------------------------------------
42 function ctor_from_ptr(ptr) result(this)
43  type(qg_locs) :: this
44  type(c_ptr), intent(in) :: ptr
45 
46  this%ptr = ptr
47 end function ctor_from_ptr
48 
49 ! ------------------------------------------------------------------------------
50 function locs_nlocs(self)
51  class(qg_locs), intent(in) :: self ! locations object
52  integer :: locs_nlocs
53  locs_nlocs = qg_locs_nlocs_c(self%ptr)
54 end function
55 
56 ! ------------------------------------------------------------------------------
57 function locs_lonlat(self) result(field)
58  class(qg_locs), intent(in) :: self ! locations object
59  type(atlas_field) :: field
60  field = atlas_field(qg_locs_lonlat_c(self%ptr))
61  call field%return()
62 end function
63 
64 ! ------------------------------------------------------------------------------
65 function locs_altitude(self) result(field)
66  class(qg_locs), intent(in) :: self ! locations object
67  type(atlas_field) :: field
68  field = atlas_field(qg_locs_altitude_c(self%ptr))
69  call field%return()
70 end function
71 
72 ! ------------------------------------------------------------------------------
73 function locs_times(self, jj) result(dt)
74  class(qg_locs), intent(in) :: self ! locations object
75  integer, intent(in) :: jj
76  type(datetime) :: dt
77  integer(c_size_t) :: idx
78  idx = jj - 1
79  call c_f_datetime(qg_locs_times_c(self%ptr, idx), dt)
80 end function
81 
82 ! ------------------------------------------------------------------------------
83 end module qg_locs_mod
This Define interfaces for accessing C++ LocationsQG objects from Fortran.
type(atlas_field) function locs_altitude(self)
Definition: qg_locs_mod.F90:66
type(datetime) function locs_times(self, jj)
Definition: qg_locs_mod.F90:74
integer function locs_nlocs(self)
Definition: qg_locs_mod.F90:51
integer, parameter rseed
Random seed (for reproducibility)
Definition: qg_locs_mod.F90:20
type(qg_locs) function ctor_from_ptr(ptr)
Definition: qg_locs_mod.F90:43
type(atlas_field) function locs_lonlat(self)
Definition: qg_locs_mod.F90:58