28 #define LISTED_TYPE qg_geom_iter
31 #include "oops/util/linkedList_i.f"
41 #include "oops/util/linkedList_c.f"
48 type(
qg_geom),
pointer,
intent(in) :: geom
49 integer,
intent(in) :: ind
55 self%ilat = (ind-1)/geom%nx+1
56 self%ilon = ind-(self%ilat-1)*geom%nx
68 self%geom => other%geom
71 self%ilon = other%ilon
72 self%ilat = other%ilat
82 integer,
intent(out) :: equals
88 if (
associated(self%geom,other%geom).and.(self%ilon==other%ilon).and.(self%ilat==other%ilat)) equals = 1
97 real(kind_real),
intent(out) :: lat
98 real(kind_real),
intent(out) :: lon
101 if (self%ilon*self%ilat>self%geom%nx*self%geom%ny)
call abor1_ftn(
'qg_geom_iter_current: iterator out of bounds')
104 lat = self%geom%lat(self%ilon,self%ilat)
105 lon = self%geom%lon(self%ilon,self%ilat)
116 if (self%ilon==self%geom%nx)
then
118 self%ilat = self%ilat+1
120 self%ilon = self%ilon+1
subroutine, public qg_geom_iter_setup(self, geom, ind)
Linked list implementation.
subroutine, public qg_geom_iter_clone(self, other)
Clone for the QG model's geometry iterator.
subroutine, public qg_geom_iter_equals(self, other, equals)
Check for the QG model's geometry iterator equality.
subroutine, public qg_geom_iter_next(self)
Update geometry iterator to next point.
subroutine, public qg_geom_iter_current(self, lat, lon)
Get geometry iterator current lat/lon.
type(registry_t), public qg_geom_iter_registry
Linked list interface - defines registry_t type.