mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2025-12-14 05:55:06 +00:00
fixing resolved QM regex
This commit is contained in:
@@ -67,6 +67,7 @@ from troggle.parsers.imports import (
|
||||
import_users,
|
||||
import_QMs,
|
||||
import_survex,
|
||||
import_justsurvex,
|
||||
import_survex_checks,
|
||||
import_surveyscans,
|
||||
)
|
||||
@@ -240,6 +241,7 @@ class JobQueue:
|
||||
"scans",
|
||||
"drawings",
|
||||
"survex",
|
||||
"justsurvex",
|
||||
"test",
|
||||
"TOTAL"
|
||||
]
|
||||
@@ -258,7 +260,7 @@ class JobQueue:
|
||||
for a specified run in the history"""
|
||||
total = 0
|
||||
for module in self.results_order:
|
||||
if module in ["runlabel", "date", "test", "TOTAL"]:
|
||||
if module in ["runlabel", "date", "test", "TOTAL", "justsurvex"]:
|
||||
continue
|
||||
# print(i, module, f"length={len(self.results[module])} ")
|
||||
if self.results[module][i]:
|
||||
@@ -447,6 +449,7 @@ def usage():
|
||||
scans - the survey scans in all the wallets (must run before survex)
|
||||
drawings - read in the Tunnel & Therion files - which scans the survey scans too
|
||||
survex - read in the survex files - all the survex blocks and entrances x/y/z
|
||||
justsurvex- read in and parse just the survex file (does not leave system in usable state)
|
||||
survex_ck - set caves and people on wallets, check wallets for *ref
|
||||
ents - read just the entrances x/y/z (must run after survex)
|
||||
|
||||
@@ -527,6 +530,8 @@ if __name__ == "__main__":
|
||||
jq.enq("scans", import_surveyscans)
|
||||
elif "survex" in sys.argv:
|
||||
jq.enq("survex", import_survex)
|
||||
elif "justsurvex" in sys.argv:
|
||||
jq.enq("justsurvex", import_justsurvex)
|
||||
elif "loadpos" in sys.argv:
|
||||
jq.enq("survex", import_loadpos)
|
||||
elif "drawings" in sys.argv:
|
||||
|
||||
Reference in New Issue
Block a user