Plots of latitude/longitude against pressure#
Example 6: Latitude-pressure plot at set longitude#
Making a plot for a given longitude value with latitude and
pressure as the axes#
f = cf.read(f"cfplot_data/ggap.nc")[3]
cfp.con(f.subspace(longitude=0))

Example 7: Latitude-pressure plot over zonal mean#
Making a plot with latitude and pressure as the axes
for a zonal mean (mean over longitude)#
f = cf.read(f"cfplot_data/ggap.nc")[1]
cfp.con(f.collapse("mean", "longitude"))

Example 8: Latitude against log of pressure over longitude zonal mean#
Making a semilog plot with latitude and the log of the
pressure as the axes for a zonal mean over longitude#
f = cf.read(f"cfplot_data/ggap.nc")[1]
cfp.con(f.collapse("mean", "longitude"), ylog=1)

Example 9: Longitude-pressure plot over latitude mean#
Making a plot with longitude and pressure as the axes
for a mean over latitude#
f = cf.read(f"cfplot_data/ggap.nc")[0]
cfp.con(f.collapse("mean", "latitude"))
