-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New ephemeris generation via command-line script (#396)
* Add a command line script for ephemeris generation. Update documentation. Better column normalization. Remove ability to run module via __main__ to avoid package import warning. Rewrite as a class; add tests. Update docs Restore requested and returned targets in table comments. Merge target identifier and target name The two were already confused: "target name" was in "target identifier", but "targetname" was a separate field. Reformat file Missing self Save some basic metadata in Ephem tables. Mock remote horizons comet test. Improve astroquery mocking, and mock more tests. Codestyle; Require astroquery for test Restore failing C/1995 O1 test. Mark code block with bash in docs. Split a string to decrease line length. Revert "Save some basic metadata in Ephem tables." This reverts commit b6429ab. Remove meta lines again. * Also test an asteroid * Test if start is after stop; default only print error messages on command line. * Improve parameter descriptions. * Make string raw because of \z * Need mocked astroquery. * Skip when astroquery is not available. * Wrap long lines. * Limit ephemeris cli to horizons, mpc, or miriade * Move EphemerisCLI to its own file and improve the invalid service error * Add PR number to change log * Fix bib tests for newly moved Ephem * Oldest supported test should be 3.8. * Cannot use python 3.8 with astropy 5.3, instead bump matplotlib
- Loading branch information
Showing
22 changed files
with
2,431 additions
and
284 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from .core import Ephem # noqa: F401 |
Oops, something went wrong.