-
Lionel GUEZ authored
Rename triplet to collection, `shp_tr` to shpc, shpt to shpc in comments, identifiers and file names.
Lionel GUEZ authoredRename triplet to collection, `shp_tr` to shpc, shpt to shpc in comments, identifiers and file names.
shpc_close.f90 428 B
module shpc_close_m
implicit none
contains
subroutine shpc_close(hshp)
! Libraries:
use shapelib, only: shpclose
use derived_types, only: shpc
TYPE(shpc), intent(inout):: hshp
!-------------------------------------------------------------
CALL shpclose(hshp%extremum)
CALL shpclose(hshp%outermost)
CALL shpclose(hshp%max_speed)
end subroutine shpc_close
end module shpc_close_m