Multiple avl.Geo plots in one Notebook cell

Dear forum,
How do I do subsequent avl.Geo plots in a single notebook cell? Or even a whole bunch of them?

For example, when I try to plot the same data with different colour pallettes, none of the plots show up (hp is a HARP product) object:

avl.Geo(hp, 'BrO_column_number_density', colormap='viridis', colorrange=(0,1.e14))
avl.Geo(hp, 'BrO_column_number_density', colormap='rainbow', colorrange=(0,1.e14))

In fact, having any code (not necessarily a second avl.Geo command) after avl.Geo makes that the plot doesn’t show in my notebook.
Is this expected behaviour?

The way to show overplots is described in the documentation.

plot = avl.MapPlot()
plot.add(avl.Geo(product, 'var1'))
plot.add(avl.Geo(product, 'var2'))
plot

However, you cannot have a single cell produce multiple plots. If you want two separate plots then you will have to use two cells.

Okay, thank you. That is good to know.