Go to file
esther d046e18c43 changed to create a vector 2024-04-29 15:02:50 +02:00
documentation Fixed spelling 2024-04-23 22:45:40 +02:00
example_files Added some tif files for testing 2024-04-06 14:29:45 +02:00
src changed to create a vector 2024-04-29 15:02:50 +02:00
.gitattributes track *.tif files using Git LFS 2024-04-06 14:07:49 +02:00
.gitignore fixed doxygen again 2024-04-06 14:00:27 +02:00
.gitlab-ci.yml fixed doxygen again 2024-04-06 14:00:27 +02:00
CMakeLists.txt Put all classes in one header and rename case to cell 2024-04-22 16:10:02 +02:00
Doxyfile Update documentation 2024-04-23 22:37:11 +02:00
LICENSE Add LICENSE 2024-03-20 14:47:26 +00:00
README.md Update documentation 2024-04-23 22:37:11 +02:00
build&run.sh Remove build dir first 2024-04-11 15:25:30 +02:00

README.md

Contour Creator 🗺️

This program takes a tiff heightmap and produces vector contours. This is our project for the INF205: Resource-efficient programming course

Status

  • Read .tif file into memory using gdal
  • Run the marching squares algorithm and produce a "cellmap"
  • Use a lookuptable to produce a vector file from the "cellmap"

Dependencies

  • GDAL >= 3.5
  • OpenMP
  • CMake

If you want to clone the repo with the example files you need git-lfs installed and activated with ´git lfs install´ To install the packages on Fedora run

dnf install g++ git-lfs cmake gdal-devel

on Debian:

apt install g++ git-lfs cmake libgdal-dev

How to build:

mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Debug ..
cmake --build . --parallel

Then you can run ./contour-creator PATH/TO/HEIGTHMAP.TIF
Run an example file: ./contour-creator "../example_files/Follo 2014-dtm.tif"
Currently the program outputs to ´out.shp´ in the current directory.

Docs

Doxygen output