Skip to content

Commit

Permalink
correct orientation of warped VRT files (#922)
Browse files Browse the repository at this point in the history
Failing tests are unrelated to this PR
  • Loading branch information
ninsbl committed Jun 8, 2023
1 parent 24463d8 commit dbe3e14
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/temporal/t.rast.import.netcdf/t.rast.import.netcdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
AUTHOR(S): Stefan Blumentrath
PURPOSE: Import netCDF files that adhere to the CF convention as a
Space Time Raster Dataset (STRDS)
COPYRIGHT: (C) 2021 by stefan.blumentrath, and the GRASS Development Team
COPYRIGHT: (C) 2023 by stefan.blumentrath, and the GRASS Development Team
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -690,9 +690,9 @@ def create_vrt(
kwargs["yRes"] = -gt[5]
kwargs["outputBounds"] = (
aligned_bbox["west"],
aligned_bbox["north"],
aligned_bbox["east"],
aligned_bbox["south"],
aligned_bbox["east"],
aligned_bbox["north"],
)

if nodata is not None:
Expand Down

0 comments on commit dbe3e14

Please sign in to comment.