Merge pull request #1278 from pierotofy/codem

Basic support for alignment files
pull/1285/head
Piero Toffanin 2022-12-14 02:02:14 -05:00 zatwierdzone przez GitHub
commit 5224c89313
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
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": {