Variable name fix

Former-commit-id: 95e8b9cc6c
pull/1161/head
Piero Toffanin 2019-06-21 15:51:27 -04:00
rodzic 958b78e240
commit 5a5b12910d
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -139,7 +139,7 @@ class ODM_Reconstruction(object):
def georeference_with_gps(self, images_path, output_coords_file, rerun=False):
try:
if not io.file_exists(output_coords_file) or rerun:
location.extract_utm_coords(photos, tree.dataset_raw, output_coords_file)
location.extract_utm_coords(self.photos, images_path, output_coords_file)
else:
log.ODM_INFO("Coordinates file already exist: %s" % output_coords_file)