MagpisClass¶
- class astroquery.magpis.MagpisClass[source]¶
Bases:
BaseQuery
Attributes Summary
Methods Summary
get_images
(coordinates[, image_size, ...])Fetches image cutouts from MAGPIS surveys.
get_images_async
(coordinates[, image_size, ...])Fetches image cutouts from MAGPIS surveys.
Return a list of surveys for MAGPIS
Attributes Documentation
- TIMEOUT = 60¶
- URL = 'https://third.ucllnl.org/cgi-bin/gpscutout'¶
- maximsize = 1024¶
- surveys = ['gps6', 'gps6epoch2', 'gps6epoch3', 'gps6epoch4', 'gps20', 'gps20new', 'gps90', 'gpsmsx', 'gpsmsx2', 'gpsglimpse36', 'gpsglimpse45', 'gpsglimpse58', 'gpsglimpse80', 'mipsgal', 'atlasgal', 'bolocam']¶
Methods Documentation
- get_images(coordinates, image_size=<Quantity 1. arcmin>, survey='bolocam', get_query_payload=False)[source]¶
Fetches image cutouts from MAGPIS surveys.
- Parameters:
- coordinatesstr or
astropy.coordinates
object The target around which to search. It may be specified as a string in which case it is resolved using online services or as the appropriate
astropy.coordinates
object. ICRS coordinates may also be entered as strings as specified in theastropy.coordinates
module.- image_sizestr or
Quantity
object, optional The string must be parsable by
astropy.coordinates.Angle
. The appropriateQuantity
object fromastropy.units
may also be used. Specifies the symmetric size of the image. Defaults to 1 arcmin.- surveystr, optional
The MAGPIS survey you want to cut out. Defaults to ‘bolocam’. The other surveys that can be used can be listed via
list_surveys()
.- maximsizeint, optional
Specify the maximum image size (in pixels on each dimension) that will be returned. Max is 2048.
- get_query_payloadbool, optional
if set to
True
then returns the dictionary sent as the HTTP request. Defaults toFalse
- coordinatesstr or
- Returns:
- A list of
HDUList
objects
- A list of
- get_images_async(coordinates, image_size=<Quantity 1. arcmin>, survey='bolocam', get_query_payload=False)[source]¶
Fetches image cutouts from MAGPIS surveys.
- Parameters:
- coordinatesstr or
astropy.coordinates
object The target around which to search. It may be specified as a string in which case it is resolved using online services or as the appropriate
astropy.coordinates
object. ICRS coordinates may also be entered as strings as specified in theastropy.coordinates
module.- image_sizestr or
Quantity
object, optional The string must be parsable by
astropy.coordinates.Angle
. The appropriateQuantity
object fromastropy.units
may also be used. Specifies the symmetric size of the image. Defaults to 1 arcmin.- surveystr, optional
The MAGPIS survey you want to cut out. Defaults to ‘bolocam’. The other surveys that can be used can be listed via
list_surveys()
.- maximsizeint, optional
Specify the maximum image size (in pixels on each dimension) that will be returned. Max is 2048.
- get_query_payloadbool, optional
if set to
True
then returns the dictionary sent as the HTTP request. Defaults toFalse
- coordinatesstr or
- Returns:
- response
requests.Response
The HTTP response returned from the service
- response