Skip to content

Commit

Permalink
small update to avoid mutable changes
Browse files Browse the repository at this point in the history
  • Loading branch information
panosatha committed Feb 14, 2025
1 parent 64226f4 commit be0755a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cht_meteo/cht/meteo/gfs_anl_0p50.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ def download_analysis_times(self, requested_times, **kwargs):
londeg = "east"
if lon_range[0] < 0:
londeg = "west"
lon_range[0] = 360.0 + lon_range[0]
lon_range[1] = 360.0 + lon_range[1]
lon_range = (360.0 + lon_range[0], 360.0 + lon_range[1])
# lon_range[0] = np.mod(lon_range[0], 360.0)
# lon_range[1] = np.mod(lon_range[1], 360.0)

Expand Down

0 comments on commit be0755a

Please sign in to comment.