From 891554fa4bf4f74ef3b9c3fda78ffcc3c9125337 Mon Sep 17 00:00:00 2001 From: nesnoj Date: Tue, 16 Jan 2024 17:12:21 +0100 Subject: [PATCH] Fix CRS in ERA5 transformation --- src/egon/data/datasets/era5.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/egon/data/datasets/era5.py b/src/egon/data/datasets/era5.py index b32061373..ffd6085fe 100644 --- a/src/egon/data/datasets/era5.py +++ b/src/egon/data/datasets/era5.py @@ -104,7 +104,7 @@ def import_cutout(boundary="Europe"): "SELECT geometry as geom FROM boundaries.vg250_sta_bbox", db.engine(), ) - .to_crs(4623) + .to_crs(4326) .geom ) xs = slice(geom_de.bounds.minx[0], geom_de.bounds.maxx[0])