https://github.com/openfluid/libopenfluid-landr
OpenFLUID LandR library (formerly part of the OpenFLUID sources)
https://github.com/openfluid/libopenfluid-landr
Last synced: 8 months ago
JSON representation
OpenFLUID LandR library (formerly part of the OpenFLUID sources)
- Host: GitHub
- URL: https://github.com/openfluid/libopenfluid-landr
- Owner: OpenFLUID
- License: gpl-3.0
- Created: 2021-07-21T13:38:14.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-11-18T14:58:30.000Z (over 4 years ago)
- Last Synced: 2025-05-25T13:48:38.847Z (about 1 year ago)
- Language: C++
- Size: 1.65 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OpenFLUID LandR library
The OpenFLUID LandR (`openfluid-landr`) library is a C++ library for topological processing of geometries, focused on digital representation of landscapes geometries.
It was formerly part of the [OpenFLUID software sources](https://github.com/OpenFLUID).
The `openfluid-landr` library relies on the following sofware
* [OpenFLUID framework](https://openfluid-project.org)
* [GEOS library](https://trac.osgeo.org/geos)
* [Boost library](https://www.boost.org/)
:warning: **Due to major breaking changes in GEOS dependency, the openfluid-landr source code is not currently stable and does not compile as is**
## Build
_NOTE: The build of openfluid-landr library has only been tested on Linux systems (Ubuntu 18.04 and 20.04)_
It requires the [GCC compiler](https://gcc.gnu.org/) compiler and the [CMake configuration tool](https://cmake.org/) to be built.
* Create the build directory in the sources directory
```txt
mkdir _build
cd _build
```
* Configure the build
```txt
cmake ..
```
* Execute the build
```txt
make
```
* Run the tests
```txt
ctest
```