-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjpl-horizons-api.cabal
55 lines (51 loc) · 2.26 KB
/
jpl-horizons-api.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: jpl-horizons-api
version: 0.4.0.0
synopsis: Ephemerides for solar system objects from the JPL Horizons service
description: The JPL Horizons on-line solar system data and ephemeris computation service provides access to key solar system data and flexible production of highly accurate ephemerides for solar system objects (1,180,796 asteroids, 3,789 comets, 211 planetary satellites {includes satellites of Earth and dwarf planet Pluto}, 8 planets, the Sun, L1, L2, select spacecraft, and system barycenters). Horizons is provided by the Solar System Dynamics Group of the Jet Propulsion Laboratory.
.
This package provides a convenience function for downloading select intervals of ephemeris data, and saving the state vector as a CSV file.
homepage: https://github.com/ocramz/jpl-horizons-api
license: BSD3
license-file: LICENSE
author: Marco Zocca
maintainer: ocramz
copyright: 2022 Marco Zocca
category: API, Astronomy
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
tested-with: GHC == 7.10.2
library
default-language: Haskell2010
ghc-options: -Wall
hs-source-dirs: src
exposed-modules: API.JPL.Horizons
build-depends: base >= 4.7 && < 5
, bytestring
, megaparsec
, req
, scientific >= 0.3.7.0
, text >= 1.2.4.1
, time
executable jh-csv
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N
hs-source-dirs: app
main-is: Main.hs
build-depends: base
, jpl-horizons-api
, optparse-applicative
, time
-- test-suite spec
-- default-language: Haskell2010
-- ghc-options: -Wall
-- type: exitcode-stdio-1.0
-- hs-source-dirs: test
-- main-is: Spec.hs
-- build-depends: base
-- , jpl-horizons-api
-- , hspec
-- , QuickCheck
source-repository head
type: git
location: https://github.com/ocramz/jpl-horizons-api