Versions Compared

Key

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

...

Code Block
languagebash
 cp ~trx/mv_data/t1000.grb "$HOME/metview/training/day _1"

You should now see a new GRIB icon in your Metview window:

...

Code Block
languagepy
# Metview Macro

t1000 = read("/path/to/user/training/day _1/metview/t1000.grb")

land_shade = mcoast(
    map_coastline_thickness         : 2,
    map_coastline_land_shade        : "on",
    map_coastline_land_shade_colour : "cream"
    )

polar_europe = geoview(
    map_projection      : "polar_stereographic",
    map_area_definition : "corners",
    area                : [30,-25,50,65],
    coastlines          : land_shade
    )

plot(polar_europe, t1000)

...

Code Block
languagebash
 cp ~trx/mv_data/z500.grb "$HOME/metview/training/day _1"

 

You should see the new GRIB icon in your Metview working folder. Move this icon into the folder you are working in.

...