DatalinkResults¶
-
class
pyvo.dal.adhoc.DatalinkResults(votable, url=None, session=None)[source]¶ Bases:
pyvo.dal.adhoc.DatalinkResultsMixin,pyvo.dal.DALResultsThe list of matching records resulting from an datalink query. Each record contains a set of metadata that describes an available record matching the query constraints. The number of records in the results is available by passing it to the Python built-in
len()function.This class supports iterable semantics; thus, individual records (in the form of
Recordinstances) are typically accessed by iterating over anDatalinkResultsinstance.Alternatively, records can be accessed randomly via
getrecord()or through a Python Database API (v2) Cursor (viacursor()). Column-based data access is possible via thegetcolumn()method.DatalinkResultsis essentially a wrapper around an AstropyvotableTableinstance where the columns contain the various metadata describing the images. One can access that VOTable directly via thevotableattribute. Thus, when one retrieves a whole column viagetcolumn(), the result is a Numpy array. Alternatively, one can manipulate the results as an AstropyTablevia the following conversion:>>> table = results.to_table()
DatalinkResultssupports the array item operator[...]in a read-only context. When the argument is numerical, the result is anRecordinstance, representing the record at the position given by the numerical index. If the argument is a string, it is interpreted as the name of a column, and the data from the column matching that name is returned as a Numpy array.Methods Summary
bysemantics(semantics[, include_narrower])return the rows with the dataset identified by the given semantics
clone_byid(id)return a clone of the object with results and corresponding
returns the first datalink row with a processing service.
getdataset([timeout])return the first row with the dataset identified by semantics #this
getrecord(index)return a representation of a datalink result record that follows dictionary semantics.
iterate over all rows with a processing service
Methods Documentation
-
bysemantics(semantics, include_narrower=True)[source]¶ return the rows with the dataset identified by the given semantics
- Parameters
- semantics: str or list
One or more term(s) from the datalink vocabulary (http://www.ivoa.net/rdf/datalink/core). Terms may be passed in with or without a leading hash. Note that at this point non-datalink/core URIs (i.e., full resource URIs) are not supported (and will be butchered).
- include_narrower: boolean
If true, the result will include matches for any term that is narrower than the term passed in.
- Returns
- Sequence of DatalinkRecord
a sequence of dictionary-like wrappers containing the result record
-
clone_byid(id)[source]¶ - return a clone of the object with results and corresponding
resources matching a given id
- Returns
- Sequence of DatalinkRecord
a sequence of dictionary-like wrappers containing the result record
-
getdataset(timeout=None)[source]¶ return the first row with the dataset identified by semantics #this
- Returns
- DatalinkRecord
a dictionary-like wrapper containing the result record.
-
getrecord(index)[source]¶ return a representation of a datalink result record that follows dictionary semantics. The keys of the dictionary are those returned by this instance’s fieldnames attribute. The returned record has the additional function
getdataset()- Parameters
- indexint
the integer index of the desired record where 0 returns the first record
- Returns
- REc
a dictionary-like wrapper containing the result record metadata.
- Raises
- IndexError
if index is negative or equal or larger than the number of rows in the result table.
See also
Record
-