Skip to content

Commit

Permalink
Bugfix order of lons/lats
Browse files Browse the repository at this point in the history
  • Loading branch information
trygveasp authored Nov 8, 2023
1 parent beed377 commit 7ee59d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions experiment/tasks/gmtedsoil.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,8 @@ def define_gmted_input(self, domain_properties: dict) -> tuple:
Returns:
tuple: GMTED input files
"""
east = domain_properties["minlon"]
west = domain_properties["maxlon"]
east = domain_properties["maxlon"]
west = domain_properties["minlon"]
south = domain_properties["minlat"]
north = domain_properties["maxlat"]

Expand Down

0 comments on commit 7ee59d4

Please sign in to comment.