In this page:
The CDS entries concerning the CDS IVOA registry effort.
New: Glu.java code 1.1 Release
Typical Glu.java usage
- To get the URL to the home page of the nearest ADS site:
String ADSUrl = glu.getUrl("ADS.home");
- To get the URL to the nearest VizieR site to retrieve
the excerpt of the USNOB catalog around M1 in VOTable format:
String vizierUrl = glu.getUrl("VizFind","USNOB M1");
- To get the result of a Simbad resolver call for 3C273:
String coord = glu.getDocument("SimbadResolve","3C273");
- To open a browser (Explorer, Netscape or Mozilla - depending
of your platform) with the result of the nearest "astro-ph" site
concerning "GAIA" keyword:
glu.showDocument("astro-ph","GAIA");
- To retrieve the list of all Glu record IDs (such as "ADS.home",
"VizFind", "SimbadResolve", "astro-ph"...):
String ids[] = glu.getIds();
- To retrieve the list of Glu record IDs concerning
one specific Glu domain such as ASTRO:
String ids[] = glu.getIds("ASTRO");
- To retrieve all Glu available domains (such as "ASTRO"...):
String domains[] = glu.getDomains();
- To retrieve the full Glu record concerning Skyview direct
image access in XML format:
String xmlRecord = glu.getRecord("Skyview");
- To retrieve the full Glu dictionary in XML:
String xmlDic = glu.getRecords();