Added shapefile and DEM processing (for TerraGear) and installer scripts

This commit is contained in:
TheFGFSEagle
2022-07-29 15:40:14 +02:00
parent 1918aead44
commit a05f4fff32
5 changed files with 290 additions and 0 deletions

12
utils/constants.py Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env python3
#-*- coding:utf-8 -*-
import os
import sys
HOME = os.environ.get("HOME", os.path.expanduser("~"))
SCRIPTS = ["process-shapefiles.py", "process-elevations.py"]
MODULE = "tgtools"
__version__ = (1, 0, 0)
__versionstr__ = ".".join(map(str, __version__))