Skip to content

Instantly share code, notes, and snippets.

@brianv0
Last active May 3, 2018 22:12
Show Gist options
  • Save brianv0/7ecba08de2cfef5e801d9b1dcf199e96 to your computer and use it in GitHub Desktop.
Save brianv0/7ecba08de2cfef5e801d9b1dcf199e96 to your computer and use it in GitHub Desktop.
Find some WISE data via RegTAP

Find WISE collections:

Try this in GAVO Sync page (http://dc.zah.uni-heidelberg.de/__system__/tap/run/tap/async) at bottom, select HTML as output.

select ivoid, res_type, short_name, res_description, reference_url, content_type, res_version
  from rr.resource
  where ivoid like '%ivo://irsa.ipac/wise%'

Find WISE image services:

select ivoid, res_type, short_name, res_description, reference_url, content_type, res_version, rr.capability.*
  from rr.resource
  natural join rr.capability
  where ivoid like '%ivo://irsa.ipac/wise%'
    and standard_id='ivo://ivoa.net/std/sia'

Via GAVO

Find WISE TAP services:

select ivoid, res_type, short_name, res_description, reference_url, content_type, res_version, rr.capability.*
  from rr.resource
  natural join rr.capability
  where ivoid like '%ivo://irsa.ipac/wise%'
    and standard_id like 'ivo://ivoa.net/std/tap%'

Via GAVO

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment