Skip to content
Snippets Groups Projects
Commit 2aea2edc authored by lukas leufen's avatar lukas leufen
Browse files

Merge branch 'lukas_issue428_feat_store-block-mse-results' into 'develop'

Resolve "Store block mse results"

See merge request !489
parents 21b13bf0 bf302dd0
Branches
No related tags found
3 merge requests!500Develop,!499Resolve "release v2.3.0",!489Resolve "Store block mse results"
Pipeline #112185 failed
...@@ -182,6 +182,10 @@ class PostProcessing(RunEnvironment): ...@@ -182,6 +182,10 @@ class PostProcessing(RunEnvironment):
file_name = os.path.join(report_path, f"uncertainty_estimate_raw_results_{season}.nc") file_name = os.path.join(report_path, f"uncertainty_estimate_raw_results_{season}.nc")
self.uncertainty_estimate_seasons[season].to_netcdf(path=file_name) self.uncertainty_estimate_seasons[season].to_netcdf(path=file_name)
# store block mse per station
file_name = os.path.join(report_path, f"block_mse_raw_results.nc")
self.block_mse_per_station.to_netcdf(path=file_name)
# store statistics # store statistics
if percentiles is None: if percentiles is None:
percentiles = [.05, .1, .25, .5, .75, .9, .95] percentiles = [.05, .1, .25, .5, .75, .9, .95]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment