Skip to content

Commit

Permalink
Fix order of bounds coords
Browse files Browse the repository at this point in the history
  • Loading branch information
spestana committed Mar 22, 2024
1 parent 3b8d5d7 commit 383e3bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_clip.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def test_goes_clip_conus(setup_session):
# setup for clip function
file_list = glob.glob('./tests/resources/spestana-goes-ortho-data-*/data/C/*.nc')
filepath = file_list[0]
bounds = [30, 40, -110, -100]
bounds = [-110, 30, -100, 40]
newfilepath = path.abspath('./tmp.nc')
# run goes clip function
go.clip.subsetNetCDF(filepath,bounds,newfilepath)
Expand Down

0 comments on commit 383e3bb

Please sign in to comment.