Skip to content

Commit 69b4dc1

Browse files
committed
[NW]: Fix swapped latitude and longitude
1 parent ff2dc3d commit 69b4dc1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

jedeschule/spiders/nordrhein_westfalen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def normalize(item: Item) -> School:
4444
source_crs = item.get("EPSG")
4545
if source_crs == "null":
4646
source_crs = "EPSG:25832"
47-
transformer = Transformer.from_crs(source_crs, "EPSG:4326")
47+
transformer = Transformer.from_crs(source_crs, "EPSG:4326", always_xy=True)
4848
lon, lat = transformer.transform(right, high)
4949

5050
return School(

0 commit comments

Comments
 (0)