A simple C++ library that helps loading data files.
This simple C++ library provides data files loading. It supports loading data from CSV files. Simple examples are provided and should be enough to explain how to use this library.
This repository contains:
- The software itself provided as a header only library in the directory include/sl0
- A few examples.
This library has been produced during my PhD thesis and as part as the European Research Council project: C0PEP0D This library is used as part of SHELD0N, a lagrangian particle advection software.
- CMake
v?or higher must be installed - a c++17 compliant compiler, such as gcc
v9or higher must be installed. For Ubuntu users: ppa. - the Threading Building Block Library
v2018or higher must be installed (this version that enables is installing it using CMake is advised)
Examples:
Chain example:
The examples assume the following directory tree structure:
..
├── .
│ │── sl0
│ │── s0s
│ │── (m0sh)
│ └── (p0l)
└── thirdparty
└── eigenOne should either install these dependencies accordingly, or adapt their path in the CMakeList.txt file of the examples.
Start by cloning this repository.
$ git clone https://github.com/C0PEP0D/l0ad.gitRunning an example:
$ cd examples/point
$ mkdir build
$ cd build
$ cmake ..
$ make
$ ./pointA simple pull should be enough.
$ git pullRémi Monthiller - @rmonthil - remi.monthiller@gmail.com
Feel free to dive in! Open an issue or submit PRs.