Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Corrected title in ssrd examples

...

Warning

The following MARS retrieval is provided only  as an example of the sort of change that users will need to make once the data are provided in GRIB2. 


Retrieval of maximum and minimum 2m temperature surface solar radiation downwards in GRIB1Retrieval of maximum and minimum 2m temperature surface solar radiation downwards in GRIB2


HTML
<pre>
retrieve,
  class=od,
  stream=oper,
  expver=1,
  date=-2,
  time=00:00:00,
  type=fc,
  levtype=sfc,
  param=169,           # ssrd - surface solar radiation downwards
  step=6/to/360/by/6,
  target="output_ssrd.grib1"
<pre>



HTML
<pre>
retrieve,
  class=od,
  stream=oper,
  expver=1,
  date=-2,
  time=00:00:00,
  type=fc,
  levtype=sfc,
  param=169,           # ssrd - surface solar radiation downwards
  <b><font color="red">timespan=fs</font></b>,         <b><font color="red"># from start of forecast</font></b> 
  step=6/to/360/by/6,
  target="output_ssrd.grib2"
<pre>


...