trjaffe

Results 5 issues of trjaffe

Most simply, > import pyvo as vo > import astropy.coordinates as coord > coords = coord.SkyCoord.from_name("m51") > skyview=vo.regsearch(servicetype='sia',keywords=['skyview digitized sky survey'])[0] > results=skyview.search(pos=coords,radius=0.1) > results[0].getdatalink() This results in an expected...

bug

Just as a TAP service can be asked for its tables by simply asking for the "tables" method/attribute, it would be useful to have the same for "examples". Again, it's...

enhancement

Include in the quick reference a line on converting the VO table to a Pandas data frame.

enhancement
priority:medium

If the VO function that is needed for the current cell should be a TAP search, then give a generic TAP example so they don't have to refer back to...

enhancement

Mysterious issue with CDS tables metadata. ``` tablesV=registry.search( servicetype='tap', keywords=['vizier'], includeaux=True )[0].service.tables print(f"Found {len(tablesV)} tables from Vizier") for s in registry.search( servicetype='tap', keywords=['heasarc'], includeaux=True ): if 'heasarc' in s.ivoid: tablesH=s.service.tables...