starplot icon indicating copy to clipboard operation
starplot copied to clipboard

Named Stars not passing to stars.py

Open bnlcas opened this issue 9 months ago • 1 comments

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.

bnlcas avatar Jan 26 '25 19:01 bnlcas