All Projects → JuliaAstro → AstroTime.jl

JuliaAstro / AstroTime.jl

Licence: other
Astronomical time keeping in Julia

Programming Languages

julia
2034 projects

Projects that are alternatives of or similar to AstroTime.jl

regions
Astropy package for region handling
Stars: ✭ 52 (+62.5%)
Mutual labels:  astronomy
astrolabe
Make your own cardboard model astrolabe
Stars: ✭ 32 (+0%)
Mutual labels:  astronomy
nextdriver
An Arduino-based controller for Celestron CG5-series equatorial mounts
Stars: ✭ 21 (-34.37%)
Mutual labels:  astronomy
frbpoppy
Fast Radio Burst Population Synthesis in Python
Stars: ✭ 23 (-28.12%)
Mutual labels:  astronomy
planetarium
Our Planetarium project!
Stars: ✭ 45 (+40.63%)
Mutual labels:  astronomy
Samples
Vue Js samples for Astronomy API
Stars: ✭ 20 (-37.5%)
Mutual labels:  astronomy
FITSIO.jl
Flexible Image Transport System (FITS) file support for Julia
Stars: ✭ 46 (+43.75%)
Mutual labels:  astronomy
sbpy
A Python package for small bodies research
Stars: ✭ 60 (+87.5%)
Mutual labels:  astronomy
fink-broker
Astronomy Broker based on Apache Spark
Stars: ✭ 18 (-43.75%)
Mutual labels:  astronomy
skymapper
Mapping astronomical survey data on the sky, handsomely
Stars: ✭ 35 (+9.38%)
Mutual labels:  astronomy
pyraf
Command language for IRAF based on Python.
Stars: ✭ 48 (+50%)
Mutual labels:  astronomy
hypatia
Geo-Astronomical library for artist
Stars: ✭ 53 (+65.63%)
Mutual labels:  astronomy
aw-clock
Astronomy/weather clock
Stars: ✭ 41 (+28.13%)
Mutual labels:  astronomy
astroCV
Computer Vision library for Astronomy
Stars: ✭ 72 (+125%)
Mutual labels:  astronomy
heyoka.py
Python library for ODE integration via Taylor's method and LLVM
Stars: ✭ 45 (+40.63%)
Mutual labels:  astronomy
moon geology atlas of space
Code, data, and instructions for mapping the geology of the moon
Stars: ✭ 76 (+137.5%)
Mutual labels:  astronomy
PyCBC-Tutorials
Learn how to use PyCBC to analyze gravitational-wave data and do parameter inference.
Stars: ✭ 91 (+184.38%)
Mutual labels:  astronomy
Messier87
A realtime raytracing blackhole renderer
Stars: ✭ 53 (+65.63%)
Mutual labels:  astronomy
yt astro analysis
yt astrophysical analysis modules
Stars: ✭ 18 (-43.75%)
Mutual labels:  astronomy
AstronomicAL
An interactive dashboard for visualisation, integration and classification of data using Active Learning.
Stars: ✭ 45 (+40.63%)
Mutual labels:  astronomy

AstroTime

Astronomical time keeping in Julia

Build Status Coverage Stable Docs Dev Docs

AstroTime.jl provides a high-precision, time-scale aware, DateTime-like data type which supports all commonly used astronomical time scales.

Installation

The package can be installed through Julia's package manager:

julia> import Pkg; Pkg.add("AstroTime")

Quickstart

# Create an Epoch based on the TT (Terrestial Time) scale
tt = TTEpoch("2018-01-01T12:00:00")

# Transform to TAI (International Atomic Time)
tai = TAIEpoch(tt)

# Transform to TDB (Barycentric Dynamical Time)
tdb = TDBEpoch(tai)

# Shift an Epoch by one day
another_day = tt + 1days

Documentation

Please refer to the documentation for additional information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].