Basic support for alignment files

pull/1278/head
Piero Toffanin 2022-12-12 15:56:48 -05:00
rodzic d87c500921
commit 0f4394feed
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -1083,8 +1083,8 @@ class Task(models.Model):
"""
gcp_path = self.find_all_files_matching(r'.*\.txt$')
# Skip geo.txt, image_groups.txt files
gcp_path = list(filter(lambda p: os.path.basename(p).lower() not in ['geo.txt', 'image_groups.txt'], gcp_path))
# Skip geo.txt, image_groups.txt, align.(las|laz|tif) files
gcp_path = list(filter(lambda p: os.path.basename(p).lower() not in ['geo.txt', 'image_groups.txt', 'align.las', 'align.laz', 'align.tif'], gcp_path))
if len(gcp_path) == 0: return None
# Assume we only have a single GCP file per task

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "WebODM",
"version": "1.9.17",
"version": "1.9.18",
"description": "User-friendly, extendable application and API for processing aerial imagery.",
"main": "index.js",
"scripts": {