diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-04-13 01:37:42 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-04-13 01:37:42 +0100 |
commit | 0820d7c0dce82553348fbbd3bb34b288daae5480 (patch) | |
tree | 31ef9c25bfe4fac8dc799cd64d4491697c687a28 /parsers/survex.py | |
parent | 267741fa8b304112d96842118bc6c3ae335500f7 (diff) | |
download | troggle-0820d7c0dce82553348fbbd3bb34b288daae5480.tar.gz troggle-0820d7c0dce82553348fbbd3bb34b288daae5480.tar.bz2 troggle-0820d7c0dce82553348fbbd3bb34b288daae5480.zip |
Docstrings for all modules
Diffstat (limited to 'parsers/survex.py')
-rw-r--r-- | parsers/survex.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/parsers/survex.py b/parsers/survex.py index 9d23cc8..ad6f27f 100644 --- a/parsers/survex.py +++ b/parsers/survex.py @@ -20,6 +20,10 @@ from troggle.core.views.caves import MapLocations from troggle.core.models.troggle import DataIssue, Expedition from troggle.core.models.survex import SurvexPersonRole, ScansFolder, SurvexDirectory, SurvexFile, SurvexBlock, SurvexStation +'''Imports the tree of survex files following form a defined root .svx file +It does also NOT scan the Loser repo for all the svx files - though it should ! +''' + survexblockroot = None ROOTBLOCK = "rootblock" METRESINFEET = 3.28084 |