Skip to content

Commit

Permalink
chore: added Filetype and SurveyName
Browse files Browse the repository at this point in the history
  • Loading branch information
rabii-chaarani committed Jul 3, 2024
1 parent 90f2a2b commit 67c2960
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion LoopDataConverter/datatypes/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from .enums import Datatype
from .enums import Datatype, SurveyName
19 changes: 19 additions & 0 deletions LoopDataConverter/datatypes/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 67c2960

Please sign in to comment.