Skip to content
Snippets Groups Projects
Commit 967f6dae authored by Lionel GUEZ's avatar Lionel GUEZ
Browse files

Add procedure `get_slice_dir`

parent a2f5183b
No related branches found
No related tags found
No related merge requests found
module get_slice_dir_m
implicit none
contains
pure function get_slice_dir(shpc_dir, cyclone, slice)
character(len = :), allocatable:: get_slice_dir
character(len = *), intent(in):: shpc_dir
logical, intent(in):: cyclone
integer, intent(in):: slice
! Local:
character(len = 10) slice_part
!-------------------------------------------------------------
write(unit = slice_part, fmt = "(a, i0)") "Slice_", slice
if (cyclone) then
get_slice_dir = shpc_dir // "/Cyclones/" // trim(slice_part)
else
get_slice_dir = shpc_dir // "/Anticyclones/" // trim(slice_part)
end if
end function get_slice_dir
end module get_slice_dir_m
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment