Skip to content

Commit

Permalink
too late for git, fixing reverts
Browse files Browse the repository at this point in the history
  • Loading branch information
smathermather committed Aug 8, 2024
1 parent d694172 commit 4c404e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stages/odm_georeferencing.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ def process(self, args, outputs):
with open(filtered_point_cloud_stats, 'r') as stats:
las_stats = json.load(stats)
spacing = las_stats['spacing'] / 10
log.ODM_INFO("Using 1/10 estimated spacing or 0.001 for las scale, which ever is less: %s" % spacing)
log_scale = min(spacing, las_scale)
log.ODM_INFO("las scale calculated as the minimum of 1/10 estimated spacing or 0.001, which ever is less.")
las_scale = min(spacing, 0.001)
else:
log.ODM_INFO("Using default las scale of 0.001")

Expand Down

0 comments on commit 4c404e7

Please sign in to comment.