From 898feabf66b782869055f22420236d93bb71b073 Mon Sep 17 00:00:00 2001 From: Ricardo Garcia Silva Date: Thu, 14 Nov 2024 13:51:43 +0000 Subject: [PATCH] Enlarge default coverage grid in order to ensure correct NCSS requests (#302) * Enlarge default coverage grid in order to ensure correct NCSS requests * Enlarge default coverage grid in order to ensure correct NCSS requests --- arpav_ppcv/config.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/arpav_ppcv/config.py b/arpav_ppcv/config.py index cc55d307..6997bfdb 100644 --- a/arpav_ppcv/config.py +++ b/arpav_ppcv/config.py @@ -80,10 +80,11 @@ class AdminUserSettings(pydantic.BaseModel): class CoverageDownloadSpatialGrid(pydantic.BaseModel): - min_lon: decimal.Decimal = Decimal("10.279") - min_lat: decimal.Decimal = Decimal("44.697") - max_lon: decimal.Decimal = Decimal("13.979") - max_lat: decimal.Decimal = Decimal("47.097") + min_lon: decimal.Decimal = Decimal("9.90843") + min_lat: decimal.Decimal = Decimal("44.40394") + max_lon: decimal.Decimal = Decimal("14.45177") + max_lat: decimal.Decimal = Decimal("47.49636") + num_rows: int = 24 num_cols: int = 37