pyvo
pyvo copied to clipboard
An Astropy affiliated package providing access to remote data and services of the Virtual Observatory (VO) using Python.
Modified the behavior of the SIA service where it would upcase all format keywords. Modified to upcase keywords "ALL", "METADATA", and "GRAPHIC", otherwise the parameter is passed unchanged. The format...
# Processing VO Model Annotations ## Introduction Model Instances in VOTables ([MIVOT](https://ivoa.net/documents/MIVOT/20230620/REC-mivot-1.0.pdf)) defines a syntax for mapping VOTable data to any model serialized in VO-DML (Virtual Observatory Data Modeling Language)....
I'm also promising all-VO-searches in some other way in the docs (which perhaps I shouldn't). This is supposed to address bug #429.
This PR should eventually add a facility for global dataset discovery to pyVO. Specifically, people should be able to say "give me all images in the VO showing M42 around...
pyvo/dal/adhoc.py (we ought to have a plan to improve that naming, btw) in iter_datalinks has the following code: ``` elif row.access_format == DATALINK_MIME_TYPE: yield DatalinkResults.from_result_url(row.getdataurl()) ``` This is for the...
When using datalink, one sometimes wants to go back to the table row the datalink originally came from. As an example, assume you want to make Hα maps from spectral...
I started with something very simple - read a node and read a container node and its entire content. There's a lot of functionality missing but initially I'm seeking comments...
To fix #155 and another take on https://github.com/astropy/pyvo/pull/239
I was somewhat surprised when something like the following showed surprisingly high CPU usage (and hence runtime): ``` import pyvo from astropy.coordinates import SkyCoord svc = pyvo.ssa.SSAService("http://dc.g-vo.org/feros/q/ssa/ssap.xml?") matches = svc.search(...
At this moment, the program ``` import pyvo srv = pyvo.dal.TAPService("https://gea.esac.esa.int/tap-server/tap") job = srv.submit_job("""SELECT ra, dec, u_mag, g_mag, r_mag, i_mag, z_mag FROM gaiadr1.sdssdr9_original_valid WHERE 1=CONTAINS( POINT('ICRS', ra, dec), CIRCLE('ICRS', 30,...