PseudoNetCDFFile.plot supports cbar_kw and map_kw options True and False. False disables the colorbar or map. This makes it easier to use without features that are not desired.
Uses cases for disabling maps:
One might build an axes with a map and want to add a tileplot on top without redoing the map.
The map feature can be slow, so disabling may be desirable for quick plotting.
Use cases for disabling colorbar:
Multipanel figures that share a colorbar do not need to create one for each figure.
A color bar might be disabled when a qualitative scale is being used without wanting quantitative evaluation.
As a part of this branch, I also added more flexibility in the plottype keyword so that it can choose based on available dimensions. And the mapping feature will recognize both longitude-latitude and lon-lat.
This adds the following abilities.
PseudoNetCDFFile.plot supports
cbar_kw
andmap_kw
optionsTrue
andFalse
.False
disables the colorbar or map. This makes it easier to use without features that are not desired.Uses cases for disabling maps:
Use cases for disabling colorbar:
As a part of this branch, I also added more flexibility in the
plottype
keyword so that it can choose based on available dimensions. And the mapping feature will recognize both longitude-latitude and lon-lat.