Skip to main content

Star charts and maps

Project description

Starplot

GitHub Workflow Status Python PyPI License

Starplot is a Python library for creating star charts and maps.

  • Zenith Plots - showing the stars from a specific time/location
  • 🗺️ Map Plots - including North/South polar and Mercator projections
  • 🔭 Optic Plots - simulates what you'll see through an optic (e.g. binoculars, telescope) from a time/location
  • 🪐 Planets and Deep Sky Objects (DSOs)
  • 🎨 Custom Styles - for all objects
  • 📥 Export - png, svg
  • 🧭 Label Collision Avoidance

Examples

Zenith plot of the stars from a specific time/location: starchart-blue

Map around the constellation Orion: map-orion

Optic plot of The Pleiades through a refractor as seen from a specific time/location: optic-pleiades

Basic Usage

To create a star chart for tonight's sky as seen from Palomar Mountain in California:

from datetime import datetime
from pytz import timezone
import starplot as sp

tz = timezone("America/Los_Angeles")

p = sp.MapPlot(
    projection=sp.Projection.ZENITH,
    lat=33.363484,
    lon=-116.836394,
    dt=datetime.now(tz).replace(hour=22),
    style=sp.styles.PlotStyle().extend(
        sp.styles.extensions.BLUE_MEDIUM,
        sp.styles.extensions.ZENITH,
    ),
    resolution=2000,
)
p.constellations()
p.stars(mag=4.6)
p.export("starchart.png")

Documentation

https://starplot.dev

Demo

For a demo of Starplot's zenith plots, check out:

Sky Atlas - Star Chart Creator

Discord

Chat with other starplotters on our Discord server:

https://discord.gg/bwazdyD7

Core Dependencies

  • matplotlib
  • pandas
  • numpy
  • geopandas
  • cartopy
  • skyfield
  • pydantic
  • adjustText

Coming Soon

  • 🌑 Planet moons
  • ✴️ Custom markers
  • 🚀 Plotting Optimizations
  • 📐 More Nebula outline levels
  • ⚖️ Better auto font-size adjustment

See more details on the Public Roadmap

License

MIT License

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

starplot-0.10.2.tar.gz (63.1 MB view hashes)

Uploaded Source

Built Distribution

starplot-0.10.2-py2.py3-none-any.whl (62.7 MB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page