Skip to content

Commit

Permalink
h5fortran v4.5.0
Browse files Browse the repository at this point in the history
Nicholaswogan committed Aug 18, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent c86dae0 commit a716d62
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/dependencies/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -21,11 +21,11 @@ CPMAddPackage(
# h5fortran
CPMAddPackage(
NAME h5fortran
VERSION 4.10.6
VERSION 4.5.0
OPTIONS
"CMAKE_POSITION_INDEPENDENT_CODE ON"
GITHUB_REPOSITORY "geospace-code/h5fortran"
GIT_TAG "v4.10.6"
GIT_TAG "v4.5.0"
EXCLUDE_FROM_ALL ON
)

4 changes: 2 additions & 2 deletions src/radtran/clima_radtran_types_create.f90
Original file line number Diff line number Diff line change
@@ -1078,7 +1078,7 @@ subroutine read_h5_Xsection(filename, wavl, xs, err)

call h%open(filename,'r')

if (.not. h%exist('log10xs')) then
if (.not. h%exists('log10xs')) then
call h%close()
err = filename//': dataset "log10xs" does not exist'
return
@@ -1416,7 +1416,7 @@ subroutine check_h5_dataset(h, dataset, ndims, dtype, prefix, err)
character(*), intent(in) :: prefix
character(:), allocatable, intent(out) :: err

if (.not. h%exist(dataset)) then
if (.not. h%exists(dataset)) then
err = prefix//': dataset "'//dataset//'" does not exist'
return
endif

0 comments on commit a716d62

Please sign in to comment.