Skip to content
Snippets Groups Projects
Verified Commit d7667386 authored by Alexander Dunkel's avatar Alexander Dunkel
Browse files

fix: folder does not exist

parent 80fbb608
No related branches found
No related tags found
No related merge requests found
Pipeline #123724 passed
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment