starplot
starplot copied to clipboard
Named Stars not passing to stars.py
Trying to customize the list of named stars is not passing to the plotter.
Below is example code ` NAMED_STARS_EXAMPLE = { 69673: "Arcturus", }
p = MapPlot( projection=Projection.ZENITH, lat = 0.0 lon= 0.0 dt=dt, ) p.stars(mag=6.0, labels=NAMED_STARS_EXAMPLE) ` The star names still appear.
Going into stars.py and modifying the variable STAR_NAMES will change the plotted star names.
Based on this it looks like STAR_NAMES is not being overwritten in the plotter when passed into MapPlot.