Skip to content

Commit

Permalink
Update _grib2io.py (#122)
Browse files Browse the repository at this point in the history
Fixed import of gaussian_latitudes()
  • Loading branch information
EricEngle-NOAA authored Jan 12, 2024
1 parent 6acd48c commit 5bb6416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grib2io/_grib2io.py
Original file line number Diff line number Diff line change
Expand Up @@ -962,7 +962,7 @@ def grid(self, unrotate=True):
self.latitudeSouthernPole,
self.longitudeSouthernPole)
elif gdtn == 40: # Gaussian grid (only works for global!)
from utils.gauss_grids import gaussian_latitudes
from grib2io.utils.gauss_grid import gaussian_latitudes
lon1, lat1 = self.longitudeFirstGridpoint, self.latitudeFirstGridpoint
lon2, lat2 = self.longitudeLastGridpoint, self.latitudeLastGridpoint
nlats = self.ny
Expand Down

0 comments on commit 5bb6416

Please sign in to comment.