Skip to content

Commit

Permalink
Enlarge default coverage grid in order to ensure correct NCSS requests (
Browse files Browse the repository at this point in the history
#302)

* Enlarge default coverage grid in order to ensure correct NCSS requests

* Enlarge default coverage grid in order to ensure correct NCSS requests
  • Loading branch information
ricardogsilva authored Nov 14, 2024
1 parent 34dedca commit 898feab
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions arpav_ppcv/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 898feab

Please sign in to comment.