npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

celestial-query

v0.1.2

Published

Query the state vectors of solar system and exoplanets

Downloads

120

Readme

celestial-query

Query the state vectors of solar system bodies using NASA's Horizons API.

Installation

npm install celestial-query

Usage

CLI

celestial-query \
  --body_ids "399" \
  --center "500@0" \
  --start_time "2006-01-01" \
  --stop_time "2006-01-20" \
  --step_size "1d" \
  --output_units "AU-D"

Options:

  • --body_ids - Target object(s). Comma-separated list of celestial body IDs or search strings. Major bodies use numeric codes (399=Earth, 499=Mars, 599=Jupiter). Small bodies (asteroids/comets) can be specified by number (e.g., "433" for Eros), designation (e.g., "2015 HM10"), or name (e.g., "Halley"). See major body codes for reference.

  • --center - Coordinate system origin (the observer location). Specify where you're observing from:

    • Barycenters: 0 or ssb (solar system barycenter), 3 (Earth-Moon barycenter)
    • Body centers: 10 or sun (Sun), 399 (Earth center), 500@0 (solar system barycenter)
  • --start_time - Ephemeris start time. Accepts multiple formats:

    • Calendar: 2006-Jan-01, 2027-May-5 12:30:23.334
    • Julian Day: JD 2451545.0
    • Day-of-year: 2022-117//11:15
    • Ancient dates: 278bc-jan-12 12:34
  • --stop_time - Ephemeris stop time. Same format options as start_time.

  • --step_size - Output time interval. Determines spacing between ephemeris entries:

    • Fixed steps: 1d (1 day), 2h (2 hours), 30 min (30 minutes)
    • Calendar steps: 1 month, 1 year (follows calendar dates)
    • Unitless integer: divides time span into N equal parts (e.g., 100 for 100 intervals)
  • --output_units - Distance and time units for output:

    • AU-D - Astronomical Units and Days (default for planetary work)
    • KM-S - Kilometers and Seconds
    • KM-D - Kilometers and Days

Example - Multiple Bodies:

celestial-query \
  --body_ids "399,499,599" \
  --center "500@0" \
  --start_time "2025-01-01" \
  --stop_time "2025-01-31" \
  --step_size "1d" \
  --output_units "AU-D"

Common Body IDs:

| Code | Body | Code | Body | | ---- | ------- | ---- | ------- | | 10 | Sun | 399 | Earth | | 199 | Mercury | 499 | Mars | | 299 | Venus | 599 | Jupiter | | 301 | Moon | 699 | Saturn |

For a complete list, see the Horizons documentation.

Output Format

The tool returns state vectors in JSON format:

{
  "name": "Earth",
  "stateVectors": [
    {
      "date": "2006-Jan-01",
      "time": "00:00:00.0000",
      "position": { "x": 1.0, "y": 2.0, "z": 3.0 },
      "velocity": { "x": 0.001, "y": 0.002, "z": 0.003 }
    }
  ]
}

License

GNU General Public License v3.0