1 / 12

Scientific Use Cases to be implemented to IVOQL

Scientific Use Cases to be implemented to IVOQL. Masahiro Tanaka and JVO team (NAOJ) IVOA Interoperability 14 May 2003. Major Query items. Fundamental dimensions position with coordinate system wavelength time flux / apparent magnitude Other parameters redshift

dea
Télécharger la présentation

Scientific Use Cases to be implemented to IVOQL

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Scientific Use Cases to be implemented to IVOQL Masahiro Tanaka and JVO team (NAOJ) IVOA Interoperability 14 May 2003 Scientific Use Cases - Masahiro Tanaka

  2. Major Query items • Fundamental dimensions • position with coordinate system • wavelength • time • flux / apparent magnitude • Other parameters • redshift • distance (from parallax / photometric / redshift) • absolute magnitude • … • Attributes • object names • object types (star / galaxy / …) • instrument (telescope / detector / filter / …) • … Scientific Use Cases - Masahiro Tanaka

  3. Use Cases • Follow-up • Search for particular objects • Search for moving objects • Line matching Scientific Use Cases - Masahiro Tanaka

  4. Use Case 1: Follow-up Obtain supplemental data of objects you have observed • Targets • Gamma-ray burst • Super Nova • AGN • … • Query • Position • Time • Cross-match Scientific Use Cases - Masahiro Tanaka

  5. Example of Query forFollow-up data select y.id, c.ra, c.dec, c.vmag from public_catalog c, your_data y, where XMATCH(c, y) < 5 arcsec and c.obs_time between TIME(“2003-05-12 09:00:00”) and TIME(“2003-05-17 17:00:00”) Scientific Use Cases - Masahiro Tanaka

  6. Use Case 2:Search for particular objects Find unknown objects with particular features • Targets • Brown dwarf • Gravitational lens • Metal-poor stars • Binaries, Planetary systems • … • Query • Color / Line • Cross-match Scientific Use Cases - Masahiro Tanaka

  7. Example of search forbrown dwarf candidate • Brown dwarf can be observed in IR, not in Visual select i.id, i.ra, i.dec, i.kmag from ir_cat i, visual_cat v where XMATCH(i !v) < 5 arcsec and i.jmag - i.kmag > 1 Scientific Use Cases - Masahiro Tanaka

  8. Use Case 3:Search for moving objects • Targets • Asteroid • Comet • … • Query • Position • Time • Cross-matching Scientific Use Cases - Masahiro Tanaka

  9. Example of search formoving objects select c1.ra, c1.dec, c1.vmag, c2.ra, c2.dec, c2.vmag from cat1 c1, cat2 c2 where XMATCH(c1, !c2) < 30 arcsec and XMATCH(!c1, c2) < 30 arcsec and ABS(c1.vmag - c2.vmag) < 2 cat1 cat2 Scientific Use Cases - Masahiro Tanaka

  10. Use Case 4:Line matching select m.molecule, m.mode, m.frequency, y.strength from your_data y, lte_model_20K m where LINEMATCH(y, m) < 0.1 GHz and y.sn > 3 LINEMATCH can work with Doppler shift. more than ABS(m.frequency - y.frequency) < 0.1 GHz Scientific Use Cases - Masahiro Tanaka

  11. Summary of Use Cases Cross-match is essential for astronomical use • XMATCH: in position • LINEMATCH: in wavelength or frequency Scientific Use Cases - Masahiro Tanaka

  12. Data analysis • How to query if columns are not provided? • e.g., only images/spectra are provided  Data analysis function will be needed • Data analyses: • source/line extraction • morphology analysis • classification • data mining • Open question: • VOQL supports data analysis? Scientific Use Cases - Masahiro Tanaka

More Related