Skip to content

Commit

Permalink
no change to behavior for coarser datasets
Browse files Browse the repository at this point in the history
  • Loading branch information
smathermather committed Aug 8, 2024
1 parent 92a0e05 commit fbc424a
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 for las scale: %s" % spacing)
log_scale = spacing
log.ODM_INFO("Using 1/10 estimated spacing or 0.001 for las scale, which every is less: %s" % spacing)
log_scale = min(spacing, las_scale)
else:
log.ODM_INFO("Using default las scale of 0.001")

Expand Down

0 comments on commit fbc424a

Please sign in to comment.