Versions Compared

Key

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

...

Excerpt
hiddentrue

If you do not want to see the ECMWF logo on your plot, set the parameter page_id_line to off in the page object.

How to remove the ECMWF Logo?

Step-by-step guide

If you do not want to see the ECMWF logo on your plot, set the parameter page_id_line to off in the page object.

...

Code Block
languagepy
titlePython Example : Do not show theECMWF logo
collapsetrue
from Magics.macro import *

#Setting output
output = output(
    output_formats                = ['ps'],
    output_name                   = 'precip',
    output_name_first_page_number = 'off')
#Setting the coastlines
background = mcoast(
    map_coastline_land_shade        = 'on',
    map_coastline_land_shade_colour = 'cream')
#Setting data
grib = mgrib(grib_input_file_name = "path/data.grib")
#Defining the contour
contour = mcont(
)
#Plotting
plot(output, background, grib, data)

Content by Label
showLabelsfalse
max5
spaces~usa
showSpacefalse
sortmodified
reversetrue
typepage
cqllabel = "kb-how-to-article" and type = "page" and space = "~usa"
labelskb-how-to-article

...