Note
Go to the end to download the full example code
Lake total depth
The metadata used to detect the styles are :
paramId |
228007 |
shortName |
dl |
Default style:
Contour shade (Range: 0.5 / 9000), used for Lake depth [sh_blue_f05t9000]
Other available styles:
Contour shade (Range: 0.5 / 9000), used for Lake depth [sh_blue_f05t9000]
Contour shade (Range: 0.5 / 9000), used for Lake depth [sh_blue_f1t9000]
from Magics import macro as magics
output = magics.output(output_formats = ['png'],
output_name_first_page_number = "off",
output_name = "dl")
data = magics.mgrib(grib_input_file_name = "dl.grib")
contour = magics.mcont(contour_automatic_setting="style_name",
contour_style_name= "sh_blue_f05t9000",)
coastlines = magics.mcoast(map_grid = "off" )
magics.plot(output, data, contour, coastlines)
# sphinx_gallery_thumbnail_path = '_static/styles/dl-sh_blue_f05t9000.png'
Total running time of the script: ( 0 minutes 0.000 seconds)