pull/1156/head
Piero Toffanin 2020-09-14 20:09:26 +00:00
rodzic ffa63c74d6
commit af946a9d6f
3 zmienionych plików z 8 dodań i 6 usunięć

Wyświetl plik

@ -68,7 +68,7 @@ def config(argv=None):
if args is not None and argv is None:
return args
parser = SettingsParser(description='OpenDroneMap',
parser = SettingsParser(description='ODM',
usage='%(prog)s [options] <project name>',
yaml_file=open(context.settings_path))
@ -533,11 +533,13 @@ def config(argv=None):
metavar='<path string>',
action=StoreValue,
default=None,
help=('Path to the image geolocation file containing the camera center coordinates used for georeferencing. Default: '
help=('Path to the image geolocation file containing the camera center coordinates used for georeferencing. '
'Note that omega/phi/kappa are currently not supported (you can set them to 0). '
'Default: '
'%(default)s. The file needs to '
'use the following format: \n'
'EPSG:<code> or <+proj definition>\n'
'image_name geo_x geo_y geo_z [omega (degrees)] [phi (degrees)] [kappa (degrees)] [horz (meters)] [vert accuracy (meters)]'
'image_name geo_x geo_y geo_z [omega (degrees)] [phi (degrees)] [kappa (degrees)] [horz accuracy (meters)] [vert accuracy (meters)]'
''))
parser.add_argument('--use-exif',
@ -669,7 +671,7 @@ def config(argv=None):
parser.add_argument('--version',
action='version',
version='OpenDroneMap {0}'.format(__version__),
version='ODM {0}'.format(__version__),
help='Displays version number and exits. ')
parser.add_argument('--split',

2
run.py
Wyświetl plik

@ -110,4 +110,4 @@ if __name__ == '__main__':
log.ODM_INFO('MMMMMMMMMMMN- smNm/ +MMm :NNdo` .mMM` oMM+/yMM/ MMMMMMMMMMMM')
log.ODM_INFO('MMMMMMMMMMMMNo- `:yMMMm `:sNMMM` sMMMMMMM+ NMMMMMMMMMMM')
log.ODM_INFO('MMMMMMMMMMMMMMMNmmNMMMMMMMNmmmmNMMMMMMMNNMMMMMMMMMNNMMMMMMMMMMMM')
log.ODM_INFO('OpenDroneMap app finished - %s' % system.now())
log.ODM_INFO('ODM app finished - %s' % system.now())

Wyświetl plik

@ -91,7 +91,7 @@ class ODMLoadDatasetStage(types.ODM_Stage):
dataset_list.write(photos[-1].filename + '\n')
# Check if a geo file is available
if os.path.exists(tree.odm_geo_file):
if tree.odm_geo_file is not None and os.path.exists(tree.odm_geo_file):
log.ODM_INFO("Found image geolocation file")
gf = GeoFile(tree.odm_geo_file)
updated = 0