diff --git a/opendm/config.py b/opendm/config.py index 0230e384..a3407129 100644 --- a/opendm/config.py +++ b/opendm/config.py @@ -557,8 +557,9 @@ def config(): sys.exit(1) if args.fast_orthophoto: - log.ODM_INFO('Fast orthophoto is turned on, automatically setting --skip-3dmodel') + log.ODM_INFO('Fast orthophoto is turned on, automatically setting --skip-3dmodel and --use-opensfm-dense') args.skip_3dmodel = True + args.use_opensfm_dense = True if args.dtm and args.pc_classify == 'none': log.ODM_INFO("DTM is turned on, automatically turning on point cloud classification") diff --git a/opendm/dem/commands.py b/opendm/dem/commands.py index 6dbec686..bf5f2ec0 100644 --- a/opendm/dem/commands.py +++ b/opendm/dem/commands.py @@ -36,7 +36,7 @@ def create_dems(filenames, demtype, radius=['0.56'], gapfill=False, with get_reusable_executor(max_workers=max_workers, timeout=None) as e: fouts = list(e.map(create_dem_for_radius, radius)) - + fnames = {} # convert from list of dicts, to dict of lists for product in fouts[0].keys():