diff --git a/setup.py b/setup.py index 5eda8a7..20f47f1 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="simple_dwd_weatherforecast", - version="2.1.9", + version="2.1.10", author="Max Fermor", description="A simple tool to retrieve a weather forecast from DWD OpenData", long_description=long_description, diff --git a/simple_dwd_weatherforecast/dwdmap.py b/simple_dwd_weatherforecast/dwdmap.py index 7e5a6a2..f9d31b7 100644 --- a/simple_dwd_weatherforecast/dwdmap.py +++ b/simple_dwd_weatherforecast/dwdmap.py @@ -92,16 +92,16 @@ def get_from_location( ): if radius_km <= 0: raise ValueError("Radius must be greater than 0") - if latitude < -90 or latitude > 90: - raise ValueError("Latitude must be between -90 and 90") - if longitude < -180 or longitude > 180: - raise ValueError("Longitude must be between -180 and 180") + if longitude < -90 or longitude > 90: + raise ValueError("Longitude must be between -90 and 90") + if latitude < -180 or latitude > 180: + raise ValueError("Latitude must be between -180 and 180") radius = math.fabs(radius_km / (111.3 * math.cos(latitude))) return get_map( - latitude - radius, longitude - radius, - latitude + radius, + latitude - radius, longitude + radius, + latitude + radius, map_type, background_type, image_width,