Skip to content

Commit

Permalink
Fix unit string written to velocity.tif (#491)
Browse files Browse the repository at this point in the history
  • Loading branch information
scottstanie authored Nov 11, 2024
1 parent 325f285 commit 3f3d91e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dolphin/timeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ def read_and_fit(
logger.info("Creating overviews for velocity image")
create_overviews([output_file])
if units := io.get_raster_units(unw_file_list[0]):
io.set_raster_units(output_file, units=units)
io.set_raster_units(output_file, units=f"{units} / year")
logger.info("Completed create_velocity")


Expand Down

0 comments on commit 3f3d91e

Please sign in to comment.