Skip to content

Commit

Permalink
Merge pull request #181 from openego/fixes/#179_era5_crs
Browse files Browse the repository at this point in the history
Fixes/#179 era5 crs
  • Loading branch information
nesnoj authored Jan 16, 2024
2 parents 5e53698 + 7fbf29d commit d6f5aaf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -729,6 +729,8 @@ Bug Fixes
`#1098 <https://github.com/openego/eGon-data/issues/1098>`_
* Fix conversion factor for CH4 loads abroad in eGon2035
`#1104 <https://github.com/openego/eGon-data/issues/1104>`_
* Fix CRS in ERA5 transformation
`#179 <https://github.com/openego/powerd-data/issues/179>`_

.. _PR #692: https://github.com/openego/eGon-data/pull/692
.. _#343: https://github.com/openego/eGon-data/issues/343
Expand Down
2 changes: 1 addition & 1 deletion src/egon/data/datasets/era5.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,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])
Expand Down

0 comments on commit d6f5aaf

Please sign in to comment.