libsim Versione 7.2.4
|
◆ arrayof_georef_coord_array_insert()
Method for inserting an element of the array at a desired position. If necessary, the array is reallocated to accomodate the new element.
Definizione alla linea 502 del file georef_coord_class.F90. 503SUBROUTINE georef_coord_array_compute_bbox(this)
504TYPE(georef_coord_array),INTENT(inout) :: this
505
506IF (ALLOCATED(this%coord)) THEN
507 this%bbox(1)%x = minval(this%coord(:)%x)
508 this%bbox(1)%y = minval(this%coord(:)%y)
|