<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">
Hi, James — 
<div class="">The data I use to draw the plumes is freely available from NOAA:</div>
<div class=""><br class="">
</div>
<div class=""><a href="ftp://ftp.cpc.ncep.noaa.gov/wd52dg/data/indices/sstoi.indices" class="">ftp://ftp.cpc.ncep.noaa.gov/wd52dg/data/indices/sstoi.indices</a>  (for the obs)</div>
<div class=""><a href="ftp://ftp.cpc.ncep.noaa.gov/NMME/realtime_anom" class="">ftp://ftp.cpc.ncep.noaa.gov/NMME/realtime_anom</a> (for the model forecasts)</div>
<div class=""><br class="">
You will need to download the data and create your own descriptor files, but that is a very straightforward task — no special tricks. Recently the format of the model data changed -- now it is NetCDF instead of GRIB — which makes it even easier. Below is the
 bit of script code for writing the ascii data as a binary time series: </div>
<div class=""><br class="">
</div>
<div class=""><font face="Courier" style="font-size: 14px;" class="">'set gxout fwrite'<br class="">
t=0<br class="">
while (1)<br class="">
  res=read(ascfile)<br class="">
  line1=sublin(res,1)<br class="">
  line2=sublin(res,2)<br class="">
  rc1 = subwrd(line1,1)<br class="">
  if (rc1); break; endif<br class="">
  ck=subwrd(line2,1)<br class="">
  if (ck!='YR')<br class="">
    t=t+1<br class="">
    year=ck<br class="">
    m=subwrd(line2,2)<br class="">
    val=subwrd(line2,10)<br class="">
    'd 'val<br class="">
    if (t=1) <br class="">
      iyear=year<br class="">
      imon=subwrd(mons,m)<br class="">
    endif<br class="">
  endif<br class="">
endwhile<br class="">
'disable fwrite'<br class="">
<br class="">
</font></div>
<div class=""><br class="">
</div>
<div class="">—Jennifer<br class="">
<br class="">
<blockquote type="cite" class="">On Jun 26, 2018, at 10:40 AM, James Spinks <<a href="mailto:jspin881@hotmail.com" class="">jspin881@hotmail.com</a>> wrote:<br class="">
<br class="">
Hi all,<br class="">
<br class="">
I was wondering if there was an updated link for the ENSO Forecast Plumes script since the URL <a href="http://monsoondata.org:9090/dods/" class="">http://monsoondata.org:9090/dods/</a> has been decommissioned.<br class="">
<br class="">
The script is hosted here http://cola.gmu.edu/enso_forecast_plumes.html and looks to still be running just fine, but the script does not contain an updated link. If there is a replacement link, can some please provide the new link. <br class="">
<br class="">
Thank you,<br class="">
James<br class="">
_______________________________________________<br class="">
gradsusr mailing list<br class="">
gradsusr@gradsusr.org<br class="">
http://secure-web.cisco.com/10cV7uvP1gMb6aGhsXoFmP9FcAbE16taY_R_CEn2DeLZcOVmzB2z8hEltkCJAzIqJc222mfbwJD1BXPCTrrkdCW-92A_3qXj4-zk3pcAGXRXDsfDVGyoNujgAffAPmVw613uXORG6J4-KHEuak38h5fRR3-mpQvMbpqwaSo_paZU-ZzrCz_sA6HXlZ89camd3E1ugdUdARvcxwvWRbX8rH9ZZSlsIGM92_lQYuTp69dFfq4B4T7GhQ2WibEwTgESteR32Zlwkwd9pQsrMU03xMITiJuRmVXIhsvqg3q1eaSud5BN6-nYbJf_z6FattWnWt2f6TGx0vl_nGZBb226xlQb0_sb5y_UnBh_mJFCN-KWM1VE66DaDGW1VIHUe48-EOTQxnnp7IvtlxkSenu6GSQOcOu9k87zqLTajNFICvw6HGFTbrE9OGDNxb-fyIKk2/http%3A%2F%2Fgradsusr.org%2Fmailman%2Flistinfo%2Fgradsusr<br class="">
</blockquote>
<br class="">
<div class="">--<br class="">
Jennifer Miletta Adams<br class="">
Center for Ocean-Land-Atmosphere Studies (COLA)<br class="">
George Mason University<br class="">
<br class="">
<br class="">
</div>
<br class="">
</div>
</body>
</html>