Skip to content

Commit 0dcf418

Browse files
committed
doc
1 parent 8f76961 commit 0dcf418

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ For NetCDF4 see [nc4fortran](https://github.com/scivision/nc4fortran/).
1010
Designed for easy use as a Meson "subproject" or CMake "ExternalProject / FetchContent" using **static** or **shared** linking.
1111
Uses Fortran 2008 `submodule` for clean template structure.
1212
This easy-to-use, thin object-oriented modern Fortran library abstracts away the messy parts of HDF5 so that you can read/write various types/ranks of data with a single command.
13+
In distinction from other high-level HDF5 interfaces, h5fortran works to deduplicate code, using polymorphism wherever feasible and extensive test suite.
1314

1415
Polymorphic API with read/write for types int32, int64, real32, real64 with rank:
1516

@@ -64,7 +65,7 @@ To include h5fortran as a Meson subproject, in the master project meson.build (t
6465
hdf5_proj = subproject('h5fortran')
6566
hdf5_interface = hdf5_proj.get_variable('hdf5_interface')
6667
67-
my_exe = exectuable('myexe', 'main.f90', dependencies: hdf5_interface)
68+
my_exe = executable('myexe', 'main.f90', dependencies: hdf5_interface)
6869
```
6970

7071
and have a file in the master project `subprojects/h5fortran.wrap` containing:
@@ -122,7 +123,7 @@ use h5fortran, only: hdf5_file
122123
type(hdf5_file) :: h5f
123124
```
124125

125-
* gzip compression may be applied for rank ≥ 2 arrays by setting `comp_lvl` to a value betwen 1 and 9.
126+
* gzip compression may be applied for rank ≥ 2 arrays by setting `comp_lvl` to a value between 1 and 9.
126127
Shuffle filter is automatically applied for better compression
127128
* string attributes may be applied to any variable at time of writing or later.
128129
* `chunk_size` and `comp_lvl` options must be set to **enable compression**

0 commit comments

Comments
 (0)