We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 946b39a + 0f89fa8 commit e6e4095Copy full SHA for e6e4095
stages/dataset.py
@@ -187,6 +187,9 @@ def find_mask(photo_path, masks):
187
p.compute_opk()
188
updated += 1
189
log.ODM_INFO("Updated %s image positions" % updated)
190
+ # Warn if a file path is specified but it does not exist
191
+ elif tree.odm_geo_file is not None and not os.path.isfile(tree.odm_geo_file):
192
+ log.ODM_WARNING("Image geolocation file %s does not exist" % tree.odm_geo_file)
193
194
# GPSDOP override if we have GPS accuracy information (such as RTK)
195
if 'gps_accuracy_is_set' in args:
0 commit comments