From d7667386003960edb2d1984c53135ba28bedd6d0 Mon Sep 17 00:00:00 2001
From: Alexander Dunkel <alexander.dunkel@tu-dresden.de>
Date: Tue, 16 Jan 2024 07:44:27 +0100
Subject: [PATCH] fix: folder does not exist

---
 md/03_tagmaps.md | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/md/03_tagmaps.md b/md/03_tagmaps.md
index 73e2e92..38ec8b8 100644
--- a/md/03_tagmaps.md
+++ b/md/03_tagmaps.md
@@ -134,7 +134,6 @@ Define output directory
 ```python
 from pathlib import Path
 OUTPUT = Path.cwd() / "out"
-TMP = Path.cwd() / "tmp"
 ```
 
 Temporary fix to prevent proj-path warning:
@@ -1092,7 +1091,7 @@ epsg_output = tm.clusterer[TOPICS].crs_proj.split(":")[1]
 
 # write a prj file first;
 # to be used in the export_contourf function
-prj_file = TMP/ f"{epsg_output}.prj"
+prj_file = OUTPUT / f"{epsg_output}.prj"
 with open(prj_file, "w") as prj:
     epsg_wkt = tools.get_wkt_prj(epsg_output)
     prj.write(epsg_wkt)
-- 
GitLab