Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions slocum/query/grads.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ class GEFS(GrADS):
The Global Ensemble Forecast System
"""

url_format = 'http://nomads.ncep.noaa.gov:9090/dods/gens_bc/gens%Y%m%d/gep_all_%Hz'
url_format = 'https://nomads.ncep.noaa.gov:9090/dods/gens_bc/gens%Y%m%d/gep_all_%Hz'
freq = 6

def variables(self):
Expand All @@ -192,7 +192,7 @@ class CMCENS(GrADS):
"""
The Canadian Ensemble Forecasting system
"""
url_format = 'http://nomads.ncep.noaa.gov:9090/dods/cmcens/cmcens%Y%m%d/cmcens_all_%Hz'
url_format = 'https://nomads.ncep.noaa.gov:9090/dods/cmcens/cmcens%Y%m%d/cmcens_all_%Hz'
freq = 12

def variables(self):
Expand All @@ -205,7 +205,7 @@ class FENS(GrADS):
"""
The FNMOC Ensemble Forecast System
"""
url_format = 'http://nomads.ncep.noaa.gov:9090/dods/fens/fens%Y%m%d/fens_all_%Hz'
url_format = 'https://nomads.ncep.noaa.gov:9090/dods/fens/fens%Y%m%d/fens_all_%Hz'
freq = 6

def variables(self):
Expand All @@ -218,7 +218,7 @@ class GFS(GrADS):
"""
Fetches from the quarter degree Global Forecast System
"""
url_format = 'http://nomads.ncep.noaa.gov:9090/dods/gfs_0p25/gfs%Y%m%d/gfs_0p25_%Hz'
url_format = 'https://nomads.ncep.noaa.gov:9090/dods/gfs_0p25/gfs%Y%m%d/gfs_0p25_%Hz'
freq = 6

def variables(self):
Expand All @@ -231,7 +231,7 @@ class RTOFS(GrADS):
"""
The Real Time Ocean Forecast System
"""
url_format = 'http://nomads.ncep.noaa.gov:9090/dods/rtofs/rtofs_global%Y%m%d/rtofs_glo_2ds_forecast_3hrly_prog'
url_format = 'https://nomads.ncep.noaa.gov:9090/dods/rtofs/rtofs_global%Y%m%d/rtofs_glo_2ds_forecast_3hrly_prog'
freq = 24

def normalize(self, ds):
Expand All @@ -245,7 +245,7 @@ def variables(self):

class WW3(GrADS):

url_format = 'http://nomads.ncep.noaa.gov:9090/dods/wave/nww3/nww3%Y%m%d/nww3%Y%m%d_%Hz'
url_format = 'https://nomads.ncep.noaa.gov:9090/dods/wave/nww3/nww3%Y%m%d/nww3%Y%m%d_%Hz'
freq = 6

def variables(self):
Expand Down