Files
interactive-track-and-trace/opening-hdf5/README.md
2024-04-18 13:42:31 +02:00

22 lines
507 B
Markdown

## Location of data
The data path is hardcoded such that the following tree structure is assumed:
```
data/
grid.h5
hydrodynamic_U.h5
hydrodynamic_V.h5
interactive-track-and-trace/
opening-hdf5/
...
```
## Compiling
Makes use of `mdspan` which is not supported by GCC libstdc++ at time of writing. See [compiler support](https://en.cppreference.com/w/cpp/compiler_support/23) for `mdspan`.
Let the current directory be the `src` directory. Run:
```shell
mkdir build
cd build
cmake ..
make
```