From a6c7be4fd5e1a13c8ed4a9b9ee1d60831a87211c Mon Sep 17 00:00:00 2001 From: peterdudfield Date: Thu, 8 Feb 2024 16:47:57 +0000 Subject: [PATCH] 3dp --- forecast-inference/forecast_inference/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forecast-inference/forecast_inference/app.py b/forecast-inference/forecast_inference/app.py index 2fbbedf..f920d51 100644 --- a/forecast-inference/forecast_inference/app.py +++ b/forecast-inference/forecast_inference/app.py @@ -56,7 +56,7 @@ def _run_model_and_save_for_one_pv( dict( start_utc=timestamp + dt.timedelta(minutes=start), end_utc=timestamp + dt.timedelta(minutes=end), - forecast_power_kw=np.round(value, 2), + forecast_power_kw=np.round(value, 3), horizon_minutes=start, ) for (start, end), value in zip(model.config.horizons, pred.powers)