mirror of
https://gitlab.com/Trygve/contour-creator.git
synced 2024-11-24 16:10:18 +00:00
Expanded readme
This commit is contained in:
parent
e5ea5dd6c1
commit
45fa49a9a8
18
README.md
18
README.md
@ -1,2 +1,16 @@
|
|||||||
# Contour creation with marching squares
|
# Contour Creator 🗺️
|
||||||
This program takes a tiff heightmap and produces vector contours
|
This program takes a tiff heightmap and produces vector contours.
|
||||||
|
This is our project for the INF205: Resource-efficient programming course
|
||||||
|
## Status
|
||||||
|
- [x] Read .tif file into memory using gdal
|
||||||
|
- [ ] Run the marching squares algorithm and produce a "casemap"
|
||||||
|
- [ ] Use a lookuptable to produce a vector file from the "casemap"
|
||||||
|
|
||||||
|
## How to build:
|
||||||
|
```
|
||||||
|
mkdir build
|
||||||
|
cd build
|
||||||
|
cmake -DCMAKE_BUILD_TYPE=Debug ..
|
||||||
|
cmake --build . --parallel
|
||||||
|
```
|
||||||
|
Then you can run `./contour-creator`
|
Loading…
Reference in New Issue
Block a user