Questions and comments may be addressed to Saji N. Hameed by email (saji'at-mark'u-aizu.ac.jp) or from my ResearchGate page

Satellite SST from the microwave channel

Downloading MW OISST

To download data and to obtain further information about Microwave Optimally Interpolated SST, go here

After you register, you can use the following ruby snippet to help download data for the desired period (add your email address at the appropriate location in the snippet).

require './mw_sst'

url = "ftp://ftp.remss.com/sst/daily/mw/v05.0/bmaps/"
uid = "put your email address here"
pas = uid

mw_sst = MW_SST.new(url,uid,pas)

# Get Final SST
mw_sst.out_path = "./Data...

Continue reading ....