Source code for utilipy.imports.astropy_imports
# -*- coding: utf-8 -*-
# ----------------------------------------------------------------------------
#
# TITLE : astropy_imports
# PROJECT : utilipy
#
# ----------------------------------------------------------------------------
"""Base set of imports for :mod:`~astropy`.
Notes
-----
calls `quantity_support`
Routine Listings
----------------
Astropy: imports
- units->u,
- coordinates->coord, SkyCoord,
- table.Table, QTable
- visualization.quantity_support, astropy_mpl_style
References
----------
Astropy [#]_
.. [#] Astropy Collaboration et al., 2018, AJ, 156, 123.
"""
__author__ = "Nathaniel Starkman"
__all__ = [
"astropy_imports_help",
# "quantity_support",
"astropy",
"u",
"coord",
"SkyCoord",
"Table",
"QTable",
"astropy_mpl_style",
# modeling
"modeling",
"models",
"fitting",
]
##############################################################################
# HELPER FUNCTIONS
# THIRD PARTY
import astropy
import astropy.coordinates as coord # coordinates
import astropy.units as u # units TODO replace with mine
from astropy import modeling
from astropy.coordinates import SkyCoord
from astropy.modeling import fitting, models
from astropy.table import QTable, Table # table data structure
from astropy.visualization import (
astropy_mpl_style,
quantity_support,
time_support,
)
# PROJECT-SPECIFIC
from utilipy.imports import conf
from utilipy.utils import make_help_function
##############################################################################
# IMPORTS
if float(astropy.__version__[:3]) > 4.1:
from astropy.modeling import custom_model
__all__ += ("custom_model",)
##############################################################################
# Cleaning Up
# astropy changes to matplotlib
quantity_support()
time_support()
##############################################################################
# Printing Information
astropy_imports_help = make_help_function(
"astropy", __doc__, look_for="Routine Listings"
)
if conf.verbose_imports:
astropy_imports_help()
##############################################################################
# END