Skip to content

Commit

Permalink
Merge pull request #1450 from metno/BoundingBox-default
Browse files Browse the repository at this point in the history
Give boundaries a default in setup_classes
  • Loading branch information
lewisblake authored Dec 10, 2024
2 parents c34d3a2 + b1aef76 commit c61a68d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyaerocom/aeroval/setup_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def get_json_output_dirs(self, assert_exists=True):
class ModelMapsSetup(BaseModel):
maps_freq: Literal["hourly", "daily", "monthly", "yearly", "coarsest"] = "coarsest"
plot_types: dict[str, str | set[str]] | set[str] = {CONTOUR}
boundaries: BoundingBox | None = None
boundaries: BoundingBox = BoundingBox(west=-180, east=180, north=90, south=-90)
map_observations_only_in_right_menu: bool = False
overlay_save_format: Literal["webp", "png"] = "webp"

Expand Down

0 comments on commit c61a68d

Please sign in to comment.