import pylab as plt
import numpy as np
from astropy import units as u
from mw_plot import MWPlot

# setup a mw-plot instance of bird's eye view of the disc
mw1 = MWPlot(
    radius=20 * u.kpc,
    unit=u.kpc,
    coord="galactocentric",
    annotation=True,
    figsize=(10, 8),
)

# set up plot title
mw1.title = "Bird's Eyes View"

mw1.scatter(8 * u.kpc, 0 * u.kpc, c="r", s=200)
plt.tight_layout()