@@ -214,16 +214,16 @@ def monitor_submission(self, submission_id, *,
214
214
verbose : bool, optional
215
215
Whether to print out information about the solving.
216
216
return_job_id : bool, optional
217
- Whether to return the Submission ID number (called Job ID on Astrometry.net).
217
+ Whether to return the Submission ID number (called Job ID on Astrometry.net).
218
218
219
219
Returns
220
220
-------
221
221
222
222
None or `astropy.io.fits.Header` or (`astropy.io.fits.Header`, str)
223
223
The contents of the returned object depend on whether the solve
224
224
succeeds or fails. If the solve succeeds the header with
225
- the WCS solution generated by astrometry.net is returned. A tuple
226
- containing WCS solution and Submission ID is return if the
225
+ the WCS solution generated by astrometry.net is returned. A tuple
226
+ containing WCS solution and Submission ID is return if the
227
227
return_job_id parameter is set True. If the solve
228
228
fails then an empty dictionary is returned. See below for the outcome
229
229
if the solve times out.
@@ -272,7 +272,7 @@ def monitor_submission(self, submission_id, *,
272
272
else :
273
273
# Try to future-proof a little bit
274
274
raise RuntimeError ('Unrecognized status {}' .format (status ))
275
- if return_job_id == False :
275
+ if return_job_id is False :
276
276
return wcs
277
277
else :
278
278
return (wcs , submission_id )
@@ -303,7 +303,7 @@ def solve_from_source_list(self, x, y, image_width, image_height, *,
303
303
verbose : bool, optional
304
304
Whether to print out information about the solving.
305
305
return_job_id : bool, optional
306
- Whether to return the Submission ID number (called Job ID on Astrometry.net).
306
+ Whether to return the Submission ID number (called Job ID on Astrometry.net).
307
307
308
308
For a list of the remaining settings, use the method
309
309
`~AstrometryNetClass.show_allowed_settings`.
@@ -380,9 +380,9 @@ def solve_from_image(self, image_file_path, *, force_image_upload=False,
380
380
381
381
verbose : bool, optional
382
382
Whether to print out information about the solving.
383
-
383
+
384
384
return_job_id : bool, optional
385
- Whether to return the Submission ID number (called Job ID on Astrometry.net).
385
+ Whether to return the Submission ID number (called Job ID on Astrometry.net).
386
386
387
387
For a list of the remaining settings, use the method
388
388
`~AstrometryNetClass.show_allowed_settings`.
0 commit comments