-
Lionel GUEZ authored
Changing my mind. In an SHPC, store shapefiles in "Slice_{slice}/{orientation}" instead of "{orientation}/Slice_{slice}". Two reasons: easier to store accessory files from running `inst_eddies`, such as `perf_report` and output from Torque submission script; clearer that a slice should contain the same dates for both orientations.
Lionel GUEZ authoredChanging my mind. In an SHPC, store shapefiles in "Slice_{slice}/{orientation}" instead of "{orientation}/Slice_{slice}". Two reasons: easier to store accessory files from running `inst_eddies`, such as `perf_report` and output from Torque submission script; clearer that a slice should contain the same dates for both orientations.
get_slice_dir.f90 705 B
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 // "/" // trim(slice_part) // "/Cyclones"
else
get_slice_dir = shpc_dir // "/" // trim(slice_part) // "/Anticyclones"
end if
end function get_slice_dir
end module get_slice_dir_m