xoa.show_options

xoa.show_options(specs=False)[source]

Print current xoa configuration

Parameters:

specs (bool) – Print option specifications instead

Example

In [1]: show_options()
[plot] # plot parameters
cmapdiv = cmo.balance
cmappos = cmo.amp # default positive colormap
cmapneg = cmo.tempo_r # default negative colormap
cmapcyc = cmo.phase # default cyclic colormap
[cf] # cf module
cache = True # use the :mod:`~xoa.cf` in memory and file caches

In [2]: show_options(specs=True)
[cf] # cf module
cache=boolean(default=True) # use the :mod:`~xoa.cf` in memory and file caches

[plot] # plot parameters
cmapdiv = string(default="cmo.balance") # defaut diverging colormap
cmappos = string(default="cmo.amp")     # default positive colormap
cmapneg = string(default="cmo.tempo_r") # default negative colormap
cmapcyc = string(default="cmo.phase")   # default cyclic colormap