This repository has been archived by the owner on Oct 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This option sets the time limit before Astrometry.net gives up trying to find the astrometric solution for each FITS image. This is exactly what the --cpulimit option of solve-field does, but there is a (known) bug that causes it to be ignored unless the 'inparallel' option is set in the configuration file (astrometry.cfg). Until this is fixed, use the 'timeout' argument of subprocess.call() — it was added in Python 3.3, so we need the module 'subprocess32', a backport for use on 2.x. astrometry/usermanual#9 https://groups.google.com/forum/#!topic/astrometry/gyWYg3bQmZ0 This merges branch 'add-timeout-option'
- Loading branch information
Showing
3 changed files
with
55 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,4 @@ uncertainties>=2.4.1 | |
unittest2>=0.5.1 | ||
montage-wrapper>=0.9.7 | ||
requests>=2.0.1 | ||
subprocess32>=3.2.6 |