forked from astropy/astropy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
39 lines (29 loc) · 974 Bytes
/
__init__.py
File metadata and controls
39 lines (29 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Licensed under a 3-clause BSD style license - see LICENSE.rst
"""
This subpackage contains classes and functions for defining and converting
between different physical units.
This code is adapted from the `pynbody
<https://github.com/pynbody/pynbody>`_ units module written by Andrew
Pontzen, who has granted the Astropy project permission to use the
code under a BSD license.
"""
from .core import *
from .quantity import *
from .decorators import *
from . import si
from . import cgs
from . import astrophys
from .function import units as function_units
from .si import *
from .astrophys import *
from .cgs import *
from .physical import *
from .function.units import *
from .equivalencies import *
from .function.core import *
from .function.logarithmic import *
from .function import magnitude_zero_points
del bases
# Enable the set of default units. This notably does *not* include
# Imperial units.
set_enabled_units([si, cgs, astrophys, function_units])