Files
AstronomicalData/test_setup.ipynb
T
2020-10-05 10:36:45 -04:00

2.0 KiB

This notebook imports the libraries we need for the workshop.

If any of them are missing, you'll get an error message.

If you don't get any error messages, you are all set.

In [ ]:
import pandas as pd
import numpy as np
In [2]:
import matplotlib as mpl
import matplotlib.pyplot as plt
from matplotlib.path import Path
from matplotlib.patches import Polygon
In [3]:
import astropy.coordinates as coord
import astropy.units as u
from astropy.table import Table
In [4]:
import gala.coordinates as gc
from pyia import GaiaData
In [5]:
# Note: running this import statement opens a connection
# to a Gaia server, so it will fail if you are not connected
# to the internet.

from astroquery.gaia import Gaia
In [ ]: