Sets the units enabled in the unit registry.
These units are searched when using UnitBase.find_equivalent_units, for example.
This may be used either permanently, or as a context manager using the with statement (see example below).
Parameters: | units : list of sequences, dicts, or modules containing units, or units
|
---|
Examples
>>> from astropy import units as u
>>> with u.set_enabled_units([u.pc]):
... u.m.find_equivalent_units()
...
Primary name | Unit definition | Aliases
[
pc | 3.08568e+16 m | parsec ,
]
>>> u.m.find_equivalent_units()
Primary name | Unit definition | Aliases
[
AU | 1.49598e+11 m | au ,
Angstrom | 1e-10 m | AA, angstrom ,
cm | 0.01 m | centimeter ,
lyr | 9.46073e+15 m | lightyear ,
m | irreducible | meter ,
micron | 1e-06 m | ,
pc | 3.08568e+16 m | parsec ,
solRad | 6.95508e+08 m | R_sun, Rsun ,
]