Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titlesolution
retrieve, 
    type     = forecast, 
    param    = t, 
    date     = -2,
    time     = 12, 
    step     = 48, 
    grid     = 48N48, 
    levelist = 1000/500/300, 
    levtype  = pl, 
    target   = "t.gg.grb"

...

  • converting the data to a global N48 Gaussian grid

    Expand
    titlesolution
    retrieve,
        type    = an,
        date    = -1,
        param   = z, 
        levtype = pressure level,
        level   = 1000/500,
        grid    = 48N48,
        target  = "myfile1"
  • converting the data to a regular 5.0 by 5.0 degree global latitude/longitude grid

    Expand
    titlesolution
    retrieve,
        type    = an,
        date    = -1,
        param   = z, 
        levtype = pressure level,
        level   = 1000/500,
        grid    = 5.0/5.0,
        target  = "myfile1"
  • converting the data to an N80 Gaussian grid for the European area

    Expand
    titlesolution
    retrieve,
        type    = an,
        date    = -1,
        param   = z, 
        levtype = pressure level,
        level   = 1000/500,
        grid    = 80N80,
        area    = europe,
        target  = "myfile1"
  • converting the data to an N80 Gaussian grid for the area from 50 degrees North to 10 degrees North, and 20 degrees West to 20 degrees East

    Expand
    titlesolution
    retrieve,
        type    = an,
        date    = -1,
        param   = z, 
        levtype = pressure level,
        level   = 1000/500,
        grid    = 80N80,
        area    = 50/-20/10/20,
        target  = "myfile1"
  • converting the data to the same area but convert it to a 2.5 degree by 2.5 degree latitude/longitude grid

    Expand
    titlesolution
    retrieve,
        type    = an,
        date    = -1,
        param   = z, 
        levtype = pressure level,
        level   = 1000/500,
        grid    = 2.5/2.5,
        area    = 50/-20/10/20,
        target  = "myfile1"
    

...