Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jacobwilliams/astro-fortran
Modern Fortran implementations of standard models used in fundamental astronomy
https://github.com/jacobwilliams/astro-fortran
astrometry astronomy fortran-package-manager
Last synced: about 5 hours ago
JSON representation
Modern Fortran implementations of standard models used in fundamental astronomy
- Host: GitHub
- URL: https://github.com/jacobwilliams/astro-fortran
- Owner: jacobwilliams
- License: other
- Created: 2019-11-22T03:12:38.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-07-03T15:43:56.000Z (over 2 years ago)
- Last Synced: 2023-03-24T05:55:48.750Z (over 1 year ago)
- Topics: astrometry, astronomy, fortran-package-manager
- Language: Fortran
- Homepage:
- Size: 8.33 MB
- Stars: 13
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
### Brief description
A refactoring of the IAU SOFA library to modern Fortran standards.
This is based on the 2019-07-22 Fortran 77 SOFA Release.
### Status
[![GitHub release](https://img.shields.io/github/release/jacobwilliams/astro-fortran.svg)](https://github.com/jacobwilliams/astro-fortran/releases/latest)
[![Build Status](https://github.com/jacobwilliams/astro-fortran/actions/workflows/CI.yml/badge.svg)](https://github.com/jacobwilliams/astro-fortran/actions)
[![codecov](https://codecov.io/gh/jacobwilliams/astro-fortran/branch/master/graph/badge.svg?token=43HK33CSMY)](https://codecov.io/gh/jacobwilliams/astro-fortran)
[![last-commit](https://img.shields.io/github/last-commit/jacobwilliams/astro-fortran)](https://github.com/jacobwilliams/astro-fortran/commits/master)### Compiling
A [Fortran Package Manager](https://github.com/fortran-lang/fpm) manifest file is included, so that the library and tests cases can be compiled with FPM. For example:
```
fpm build --profile release
fpm test --profile release
```To use `astro-fortran` within your FPM project, add the following to your `fpm.toml` file:
```toml
[dependencies]
astro-fortran = { git="https://github.com/jacobwilliams/astro-fortran.git" }
```To generate the documentation using [FORD](https://github.com/Fortran-FOSS-Programmers/ford), run:
```
ford astro-fortran.md
```### Documentation
The latest API documentation can be found [here](https://jacobwilliams.github.io/astro-fortran/). This was generated from the source code using [FORD](https://github.com/Fortran-FOSS-Programmers/ford).
### License
The astro-fortran source code and related files and documentation are distributed under a permissive free software [license](https://github.com/jacobwilliams/astro-fortran/blob/master/LICENSE.txt) (BSD-style).
### See also
* [SPICE](http://naif.jpl.nasa.gov/naif/toolkit.html)
* [NOVAS](http://aa.usno.navy.mil/software/novas/novas_info.php)
* [SOFA](http://www.iausofa.org) (mirrored [here](https://github.com/jacobwilliams/IAU_SOFA) on GitHub)
* [Fortran Astrodynamics Toolkit](https://github.com/jacobwilliams/Fortran-Astrodynamics-Toolkit)