h5fortran
h5fortran copied to clipboard
Adds methods for iterating and visiting
Hi
This pull request introduces new functionalities for iterating over and visiting datasets in HDF5 files, along with some minor fixes and improvements. The most important changes include the addition of iterate and visit procedures, updates to CMakeLists.txt to accommodate new source files, and corrections to existing error messages.
New functionalities:
- Added
iterateandvisitprocedures to theh5fortranmodule for iterating over and visiting datasets in HDF5 files. (src/interface.f90,src/iterate.f90,src/visit.f90) [1] [2] [3] [4]
Build system updates:
- Updated
CMakeLists.txtto include new source filesiterate.f90andvisit.f90. (src/CMakeLists.txt)
Documentation updates:
- Added documentation for the new
iterateandvisitprocedures inAPI.md. (API.md)
Minor fixes:
- Corrected spelling error in
README.mdfrom "impementation" to "implementation". (README.md) - Fixed error messages related to dataset slicing and dimensions in
utils.f90andwrite.f90. (src/utils.f90,src/write.f90) [1] [2] [3]
Testing updates:
- Added new tests for
iterateandvisitprocedures inCMakeLists.txtfor tests. (test/CMakeLists.txt)