Skip to content
Snippets Groups Projects
Commit 69391ed7 authored by Frisinghelli Daniel's avatar Frisinghelli Daniel
Browse files

Convert total precipitation to mm.

parent 0ace38bc
No related branches found
No related tags found
No related merge requests found
......@@ -94,7 +94,8 @@ if __name__ == '__main__':
# compute daily averages/sums
if var == 'total_precipitation':
ds = ds.resample(time='D').sum(dim='time')
# convert from m to mm
ds = ds.resample(time='D').sum(dim='time') * 1000
else:
ds = ds.resample(time='D').mean(dim='time')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment