#ifndef ADVECTION_READDATA_H #define ADVECTION_READDATA_H /** * reads the file hydrodynamic_U.h5 * @return the data vector of us */ std::vector readHydrodynamicU(); /** * reads the file hydrodynamic_V.h5 * @return the data vector of vs */ std::vector readHydrodynamicV(); /** * Reads the file grid.h5 * @return a tuple of (times, latitude, longitude) */ std::tuple, std::vector, std::vector> readGrid(); #endif //ADVECTION_READDATA_H