From 45fa49a9a86aafaa87ec6692e911c3163a1061f0 Mon Sep 17 00:00:00 2001 From: Trygve Date: Sat, 6 Apr 2024 17:50:03 +0200 Subject: [PATCH] Expanded readme --- README.md | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8bf6e8e..b51c13b 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,16 @@ -# Contour creation with marching squares -This program takes a tiff heightmap and produces vector contours \ No newline at end of file +# Contour Creator 🗺️ +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` \ No newline at end of file