A Python package that provides astronomical constants.
Project description
AstroConst
A Python package that provides astronomical constants. The code is being developed by Marc van der Sluys of the department of Astrophysics at the Radboud University Nijmegen, the Institute of Nuclear and High-Energy Physics (Nikhef), and the Institute for Gravitational and Subatomic Physics (GRASP) at Utrecht University, all in The Netherlands. The AstroConst package can be used under the conditions of the EUPL 1.2 licence.
Note that the package is currently is its alpha stage, and things may still change as I start using this.
Installation
This package can be installed using pip install astroconst
. This should automatically install the
dependency package numpy
, if it has't been installed already. If you are installing by hand, ensure that
this package is installed as well.
Example use
SI units should be used everywhere - no ergs, dyn or cm (sorry!). Values include mathematical constants (like π), angle-conversion factors (from/to radians, degrees, hours, arcseconds, ...), calendar stuff (names of weekdays and months, JDs, lengths of days, months and years), solar-system objects (Sun, Moon, planet names diameters, orbital separations, etc. - note that Moon = planet #0), and some basic physical constants ((Stefan-)Bolzmann, Planck, speed of light, etc.).
The submodule aa
contains constants published by the Astronomical Almanac, converted to Python.
"""Example Python script using the AstroConst package."""
import astroconst as ac
print(ac.c) # 299792458 (speed of light, quick access)
print(ac.aa.c) # Access constants from Astronomical Almanac
print(ac.jd2000) # 2451545
print(ac.m_sun) # 1.9891e+30 (kg)
print(ac.sol_const) # 1361.5 (W/m2)
print(ac.year_jul) # 31557600.0 (s)
print(ac.year_jul/ac.day) # 365.25 (days)
print(ac.month_syn/ac.day) # 29.530588853 (days)
print('The diameter of '+ac.plname_en[5]+' is '+str(ac.pl_d[5]/ac.km)+' km')
# The diameter of Jupiter is 142984 km
print('a_'+ac.plname_en[0]+' = '+str(ac.pl_a[0]/ac.km)+' km')
# a_Moon = 384400.0 km (Moon = planet #0)
print(ac.dow_en_abr[0]) # Sun
print(ac.months_en[3]) # March
AstroConst pages
- Pypi: AstroConst Python package
- GitHub: AstroConst source code
- ReadTheDocs: AstroConst documentation
Author and licence
- Author: Marc van der Sluys
- Contact: http://marc.vandersluys.nl
- Licence: EUPL 1.2
References
Copyright (c) 2022 Marc van der Sluys
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file astroconst-0.0.12.tar.gz
.
File metadata
- Download URL: astroconst-0.0.12.tar.gz
- Upload date:
- Size: 16.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f63ed4d521b84ab65ee0b6e141e75670dc640e8f4c5ba97039093db06d2cddc |
|
MD5 | f44fa1a218e21c47f0dfcfda8407970a |
|
BLAKE2b-256 | d7ffcfcdc51f169f0c45d8daf9c730860175345c82fc8e222d2a3a8d3e607ab1 |
File details
Details for the file astroconst-0.0.12-py3-none-any.whl
.
File metadata
- Download URL: astroconst-0.0.12-py3-none-any.whl
- Upload date:
- Size: 16.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 60c56ae2130839485d0dbb07c2affdcb86388b573f5f5b813bc51ff861b57a4b |
|
MD5 | 44101d9725452f3e72dc6d3870074a28 |
|
BLAKE2b-256 | 8a7dd5936281794587344ddeefb8d4fdcacae7546faba5978556ff11cc87d82c |