Blame view

src/utils/celme/__init__.py 481 Bytes
4f8cc5f0   aklotz   Package CelMe Cel...
1
2
3
4
5
6
7

from __future__ import (absolute_import, division, print_function,
                        unicode_literals)

import glob
import os

946eb652   theopuhl   Change to help im...
8
9
10
11
12
13
14
15
16
17
from .angles import Angle
from .atmosphere import Atmosphere
from .coords import Coords
from .dates import Date
from .durations import Duration
from .home import Home
from .horizon import Horizon
from .mechanics import Mechanics
from .site import Site
from .targets import Target
4f8cc5f0   aklotz   Package CelMe Cel...
18
19
20
21

# Now we can use:
# a = celme.Coords((0,5,4))
# b = celme.Angle()