I've downloaded Pandas and I'm fine with Skyfield planets. I want to find the hipparcos location numbers of stars. Rhodes Mill tutorial only has one example listing the Barnard Star. How does python/ skyfield access these star locations? e.g How do I get the location of Sirius?
from skyfield.api import Star, load
from skyfield.data import hipparcos
with load.open(hipparcos.URL) as f:
df = hipparcos.load_dataframe(f)
barnards_star = Star.from_dataframe(df.loc[87937])