MastClass¶
- class astroquery.mast.MastClass(mast_token=None)[source]¶
Bases:
MastQueryWithLoginMAST query class.
Class that allows direct programmatic access to the MAST Portal, more flexible but less user friendly than
ObservationsClass.Attributes Summary
Methods Summary
__call__(*args, **kwargs)init a fresh copy of self
Removes all cache files.
enable_cloud_dataset([provider, profile, ...])login([token, store_token, reenter_token])Log into the MAST portal.
logout()Log out of current MAST session.
mast_query(service[, columns])Given a Mashup service and parameters as keyword arguments, builds and excecutes a Mashup query.
Resets the cache location to the default astropy cache
resolve_object(objectname, *[, resolver, ...])Resolves an object name to a position on the sky.
service_request(*args, **kwargs)Queries the service and returns a table object.
service_request_async(service, params, *[, ...])Given a Mashup service and parameters, builds and executes a Mashup query.
session_info([verbose])Displays information about current MAST user, and returns user info dictionary.
Attributes Documentation
- cache_location¶
Methods Documentation
- __call__(*args, **kwargs)¶
init a fresh copy of self
- authenticated()¶
- clear_cache()¶
Removes all cache files.
- disable_cloud_dataset()¶
Deprecated since version v0.4.8: This function is non-operational and will be removed in a future release.
Disables downloading public files from S3 instead of MAST.
- enable_cloud_dataset(provider='AWS', profile=None, verbose=True)¶
Deprecated since version v0.4.8: This function is non-operational and will be removed in a future release.
Enable downloading public files from S3 instead of MAST. Requires the boto3 library to function.
- Parameters:
- providerstr
Which cloud data provider to use. We may in the future support multiple providers, though at the moment this argument is ignored.
- profilestr
Profile to use to identify yourself to the cloud provider (usually in ~/.aws/config).
- verbosebool
Default True. Logger to display extra info and warning.
- login(token=None, store_token=False, reenter_token=False)¶
Log into the MAST portal.
- Parameters:
- tokenstring, optional
Default is None. The token to authenticate the user. This can be generated at https://ssoportal.stsci.edu/idp/profile/SAML2/Redirect/SSO?execution=e1s1 If not supplied, it will be prompted for if not in the keyring or set via $MAST_API_TOKEN
- store_tokenbool, optional
Default False. If true, MAST token will be stored securely in your keyring.
- reenter_tokenbool, optional
Default False. Asks for the token even if it is already stored in the keyring or $MAST_API_TOKEN environment variable. This is the way to overwrite an already stored password on the keyring.
- logout()¶
Log out of current MAST session.
- mast_query(service, columns=None, **kwargs)[source]¶
Given a Mashup service and parameters as keyword arguments, builds and excecutes a Mashup query.
- Parameters:
- servicestr
The Mashup service to query.
- columnsstr or list, optional
Specifies the columns to be returned as a comma-separated list, e.g. “ID, ra, dec”.
- **kwargs
Service-specific parameters and MashupRequest properties. See the service documentation and the MashupRequest Class Reference for valid keyword arguments.
For filtered services (i.e. those with “filtered” in the service name), parameters that are not related to position or MashupRequest properties are treated as filters. If the column has discrete values, the parameter value should be a single value or list of values, and values will be matched exactly. If the column is continuous, you can filter by a single value, a list of values, or a range of values. If filtering by a range of values, the parameter value should be a dict in the form
{'min': minVal, 'max': maxVal}.
- Returns:
- response
Table
- response
- reset_cache_location()¶
Resets the cache location to the default astropy cache
- resolve_object(objectname, *, resolver=None, resolve_all=False)¶
Resolves an object name to a position on the sky.
- Parameters:
- objectnamestr
Name of astronomical object to resolve.
- resolverstr, optional
The resolver to use when resolving a named target into coordinates. Valid options are “SIMBAD” and “NED”. If not specified, the default resolver order will be used. Please see the STScI Archive Name Translation Application (SANTA) for more information. If
resolve_allis True, this parameter will be ignored. Default is None.- resolve_allbool, optional
If True, will try to resolve the object name using all available resolvers (“NED”, “SIMBAD”). Function will return a dictionary where the keys are the resolver names and the values are the resolved coordinates. Default is False.
- Returns:
- service_request(*args, **kwargs)¶
Queries the service and returns a table object.
Given a Mashup service and parameters, builds and executes a Mashup query. See documentation here for information about how to build a Mashup request.
- Parameters:
- servicestr
The Mashup service to query.
- paramsdict
JSON object containing service parameters.
- pagesizeint, optional
Default None. Can be used to override the default pagesize (set in configs) for this query only. E.g. when using a slow internet connection.
- pageint, optional
Default None. Can be used to override the default behavior of all results being returned to obtain a specific page of results.
- **kwargs
See MashupRequest properties here for additional keyword arguments.
- Returns:
- tableA
Tableobject.
- tableA
- service_request_async(service, params, *, pagesize=None, page=None, **kwargs)[source]¶
Given a Mashup service and parameters, builds and executes a Mashup query. See documentation here for information about how to build a Mashup request.
- Parameters:
- servicestr
The Mashup service to query.
- paramsdict
JSON object containing service parameters.
- pagesizeint, optional
Default None. Can be used to override the default pagesize (set in configs) for this query only. E.g. when using a slow internet connection.
- pageint, optional
Default None. Can be used to override the default behavior of all results being returned to obtain a specific page of results.
- **kwargs
See MashupRequest properties here for additional keyword arguments.
- Returns:
- responselist of
Response
- responselist of
- session_info(verbose=True)¶
Displays information about current MAST user, and returns user info dictionary.
- Parameters:
- verbosebool, optional
Default True. Set to False to suppress output to stdout.
- Returns:
- responsedict