From 67c2960bc751d6ec30610f4a5b78e60d9b6d6f35 Mon Sep 17 00:00:00 2001 From: rabii-chaarani Date: Wed, 3 Jul 2024 16:02:47 +0930 Subject: [PATCH] chore: added Filetype and SurveyName --- LoopDataConverter/datatypes/__init__.py | 2 +- LoopDataConverter/datatypes/enums.py | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/LoopDataConverter/datatypes/__init__.py b/LoopDataConverter/datatypes/__init__.py index c194e44..218d88e 100644 --- a/LoopDataConverter/datatypes/__init__.py +++ b/LoopDataConverter/datatypes/__init__.py @@ -1 +1 @@ -from .enums import Datatype \ No newline at end of file +from .enums import Datatype, SurveyName \ No newline at end of file diff --git a/LoopDataConverter/datatypes/enums.py b/LoopDataConverter/datatypes/enums.py index 23ce679..4ea1a33 100644 --- a/LoopDataConverter/datatypes/enums.py +++ b/LoopDataConverter/datatypes/enums.py @@ -8,3 +8,22 @@ class Datatype(IntEnum): FOLD = 3 DTM = 4 FAULT_ORIENTATION = 5 + +class SurveyName(IntEnum): + + GA = 0 + NTGS = 1 + GSQ = 2 + GSWA = 3 + GSSA = 4 + GSV = 5 + MRT = 6 + GSNSW = 7 + +class Filetype(IntEnum): + + CSV = 0 + GEOJSON = 1 + SHP = 2 + GPKG = 3 + ZIP = 4 \ No newline at end of file