If you downloaded the archive in the [_dist_](https://gitlab.obspm.fr/dblain/exorem/-/tree/master/dist) directory, you should have everything you need, except a stellar spectrum (see point 4 below), and more importantly the k-coefficients tables (see point 3 below). Otherwise, check the following:
...
...
@@ -29,6 +30,7 @@ To plot the figures using the provided plot functions, you will need Python3, an
- numpy
- scipy
- matplotlib
- h5py
# First run
## Setup
...
...
@@ -243,4 +245,31 @@ Not happy with the figures you get ? What if for example you wanted to see the c
There is much other things you can do. Do not hesitate to check the _src/python/plot_figures.py_ file to look at the docstrings of the functions.
## HDF5-formatted output
To read the HDF5-formatted outputs, you can use [HDFView](https://www.hdfgroup.org/downloads/hdfview/).
You can also read them using Python and h5py.
1. To do the latter, open a python console:
```bash
python
```
2. Import the h5py module:
```python
fromsrc.python.plot_figuresimport*
```
Note: you can also simply `import h5py`.
3. Open the result file, here we assume that the result file is _./outputs/exorem/example.h5_: