Virtual Observatory Tools. Khadija EL Bouchefry

Size: px
Start display at page:

Download "Virtual Observatory Tools. Khadija EL Bouchefry"

Transcription

1 Virtual Observatory Tools Khadija EL Bouchefry AVN School -HartRAO- Feb 22, 2016

2 The Virtual Observatory VO What it the Virtual Observatory? What are VO tools? How can we use VO tools (for our Own research) Why should we use them?

3 Astronomy is facing a data avalanche We live in the age of mega-survey Large digital sky surveys are becoming dominant source of data in astronomy: > 100 TB, growing rapidly Surveys: SDSS, 2MASS, DPOS, WMAP. Digital libraries: ADS, Astro-ph, NED, CDS. Observatory archives: HST, ATOA, MAST. Future examples: LSST, GALEX, ASKAP, SKA. Large Telescopes continuously growing: Meerkat, GAIA, SKA, ALMA,.

4 Astronomy is facing a data avalanche Astronomers need new data storage facilities, and new tools for using this wealth of data in multi-wavelength studies. The name of the solution is the Virtual Observatory (VO)

5 The History of Virtual Observatory 1990s: NASA establishes wavelength-oriented science archive centers; multiple large ground-based digital sky survey projects initiated April 1999, Decadal Survey Panel on Theory, Computation, and Data Discovery met in Los Alamos November 1999, NVO organisational workshop at JHU February 2001, AASC/NAS report Astronomy and Astrophysics in the New Millennium released June 2002, Toward an International Virtual Observatory conference at ESO; International VO Alliance formed (IVOA)

6 IVOA Technology Initiatives The IVOA now comprises 20 VO programs from Argentina, Armenia, Australia, Brazil, Canada, Chile, China, Europe, France, Germany, Hungary, India, Italy, Japan, Russia, South Africa, Spain, Ukraine, the United Kingdom, and the United States and an inter-governmental organization (ESA). Membership is open to other national and international projects according to the IVOA Guidelines for Participation.

7

8 What is [a,the] Virtual Observatory? >>> a Virtual Universe <<< The VO is an international innovative, evolving system, which allows users to interrogate multiple data centres in a seamless and transparent way, to make the best use of the available astronomical data world wild. Good communication, common standards and protocols between data providers, tool users and developers needed International Virtual Observatory Alliance (IVOA) [New international standards for data access and mining protocols]

9 What is [a,the] Virtual Observatory? VO: all astronomical data in your computer VO is an international astronomical community based initiative >>> a Virtual Universe <<< Electronic storage and access to the huge amount of available data And Software to analyse the data ==> VO tools and Services No Costs! Free to download!

10 Basic principles of VO 1. Directory service: Registry Locate data archives/services 2. Data Access services: Simple Cone Search Rows from catalogues Simple Image Access (SIA) Images from archives Simple Spectra Access (SSA) Spetra from archives Simple Line Access (SLA) Spectral lines from archives Table Access Protocol (TAP) SQL like query of database

11 Basic principles of VO 3. VOTable: XML mark-up standard for astronomical tables. 4. VOlanguage: Astronomical Data Query Language standard query language based on SQL 5. Application communications: Simple Application Messaging Protocol (SAMP) exchange data/control between local applications

12 A Quick tour of some VO tools and services

13

14

15 Virtual Observatory: Tools & Services Data Discovery Spectral Analysis Data Visualisation and Handling SED Building and fitting Aladin VO Spec TOPCAT VOSED VO Desktop Specview STILTS VOSpec Datascope SPLAT VOPLOT Yafit Octet Euro-3D VisIVO Easy-z ASPID NVO Spectrum VO Cat GOSSIP NED Montage NVO Filter VoEventNet VOStat OpenSkyQuery NVO Footprint Use them individually or together!

16 VO tools: TOPCAT TOPCAT = Tool for OPerations on Catalogues And Tables Key features: Import/export catalogs in various formats Cross-matching/Merging Plotting/Manipulating data Search/Retrieve data from archives Handle (fairly) large tables rows cols easily Talk to other astro tools (SAMP)

17 TOPCAT: explore the main window Display the stats Plot functionalities Select a table Cross matching SAMP

18 TOPCAT Screenshots Credit:

19 TOPCAT Screenshots Credit:

20 TOPCAT Screenshots Credit:

21 Mark Taylor Developer of Topcat Biography I am a Research Fellow in the Astrophysics group, writing and supporting software for use in UK astronomy and beyond. My outputs are software, standards and software support, I do not in general perform science research as such I did a BSc at Bristol in Physics and Philosophy and a PhD in theoretical and compositional ordering of magnetic multilayers. I also worked for three years in the field of quasiharmonic lattice dynamics in the chemistry department.

22

23

24

25 ALADIN Sky Atlas

26 ALADIN: The main window

27

28 VO tools: Aladin Sky Atlas Features: Developed by: Centre de données astronomiques de Strasbourg (CDS) View digitised astronomical images/surveys Superimpose data from various catalogs/databases Cross matching

29

30 Aladin Sky Atlas screenshot Crab Nebula

31 Fernique Pierre: Developer of Aladin CDS, Observatoire de Strasbourg Ingénieur de Recherche au Centre de Données astronomiques de Strasbourg

32 VO tools: VOSpec Functionalities Plot/superimpose Several Spectra Math operations: like Polynomial, BlackBody fitting, Gaussian, Normalisation, Redshift/DeReddening correction etc Access to Theoretical Spectra and Spectral Atomic Lines Interoperability with other VOaware tools (SAMP)

33 VOSpec Screenshot SED of NGC1068 Credit:

34 Speaking SAMP

35 A1656

36

37

38

39

40

41

42

43

44

45

46 VOSpec Plot and superimpose Several Spectra Display options fitting functions Normalisation redshift correction Line identification Various input format: fits, photometry, votable

47 X-Match facilities

48 A Virtual Observatory for generating images of any part of the sky at wavelengths in all regimes

49 Basic SQL Query Structure A basic SQL query consist of a SELECT, a FROM, and a WHERE clause. SELECT - Specifies the columns to appear in the results FROM - Specifies the relations to be used WHERE - filters the tuples - join conditions are explicitly specified in the WHERE clause GROUP BY - groups rows with the same columns values - the having contract can be used to further filter the groups ORDER BY - defines the order of the resulting tuples

50 SQL Queries: SDSS SDSS prime and early example of a large astronomical data resource that offered multiple ways of retrieving data, including custom SQL queries

51 SQL Queries: SDSS

52

53 SQL Queries: SDSS

54 SQL Queries: SDSS SDSS prime and early example of a large astronomical data resource that offered multiple ways of retrieving data, including custom SQL queries Tutorial covering performing SQL queries on SDSS data:

55 SDSS: Table Browser Schema Browser Need to know what Tables are available and which fields are stored in those tables

56 SDSS: Table Browser

57 SDSS: Table Browser

58 SDSS: Table Browser Need to know what Tables are available and which fields are stored in those tables

59 SDSS: Basic Query SELECT ra, dec FROM specobj which fields do you want returned? from which table? WHERE ra BETWEEN 140 and 141 AND dec BETWEEN 20 and 21 AND class = 'STAR' } Boolean constraints on fields that records must satisfy

60 SDSS: Relational Query SELECT specobj.fiberid, PhotoObj.modelMag_u, PhotoObj.modelMag_g, PhotoObj.modelMag_r, PhotoObj.modelMag_i, PhotoObj.modelMag_z, PhotoObj.ra, PhotoObj.dec, specobj.z, PhotoObj.ObjID FROM PhotoObj, specobj WHERE specobj.bestobjid = PhotoObj.ObjID which fields do you want returned? [Table.Field] from which table? Need to ensure we compare the same object AND specobj.class = 'qso' AND specobj.zwarning = 0 AND specobj.z between 0.3 and 0.4 } Boolean constraints on fields that records must satisfy [Table.field] = value

61 Result

62 Powerful queries SELECT TOP 10 run,camcol,rerun,field,objid,ra,dec FROM Galaxy WHERE ( ( flags & (dbo.fphotoflags('binned1') dbo.fphotoflags('binned2') dbo.fphotoflags('binned4')) ) > 0 and ( flags & (dbo.fphotoflags('blended') dbo.fphotoflags('nodeblend') dbo.fphotoflags('child')) )!= dbo.fphotoflags('blended') and ( flags & (dbo.fphotoflags('edge') dbo.fphotoflags('saturated')) ) = 0 and petromag_i > 17.5 and (petromag_r > 15.5 or petror50_r > 2)2.5 * LOG10(2 * * petror50_r * petror50_r) ) < 23.3 ) )

63 Other examples: UKIDSS & MAST

64

65

66 How to find VO tools?

67

68 Science with VO

69 Possible Science/VO-Science Summary of the VO data/tools applications to real science cases: Brown dwarf selection Deep field surveys Studying clusters of galaxies Discovering high-redshift quasars at z=6-10 Low surface brightness galaxy discovery Geomagnetic storms and their impact on the magnetosphere Deciphering solar coronal waves Solar-stellar flare connection Solar/Terrestrial Phenomena-Solar event coincidence Galaxy environment of supernovae at large distance and many more

70

71

72 6 He II + H Normalized Flux * 2 + const J SdO7 He0 J SdB1 He0 J SdB2 He0 J sdb2.5 He Wavelenght (A )

73

74

75

76

77

78

79

80

81 VO For Education & Outreach

82 Aladin & Stellarium

83 Aladin Sky Atlas

84 The Hubble sequence The Hubble Sequence is a morphological classification scheme for galaxies invented by Edwin Hubble in Hubble's scheme divides regular galaxies into three broad classes: ellipticals, lenticulars and spirals. A fourth class contains galaxies with an irregular appearance.

85 The Hubble sequence The Hubble Sequence is a morphological classification scheme for galaxies invented by Hubble's scheme Edwin Hubble divides in regular galaxies into three broad classes: ellipticals, lenticulars and spirals, based on their visual appearance (originally recorded on photographic plates). A fourth class contains galaxies with an irregular appearance.

86 The Hubble sequence The Hubble Sequence is a morphological classification scheme for galaxies invented by Hubble's scheme Edwin Hubble divides in regular galaxies into three broad classes: ellipticals, lenticulars and spirals, based on their visual appearance (originally recorded on photographic plates). A fourth class contains galaxies with an irregular appearance.

87 Use Case: Galaxies classification 14 galaxies : M59, M85, M86, M87, NGC0175, NGC0488, NGC0628, NGC1073, NGC1300, NGC3031, NGC4125, NGC5457, NGC7479, NGC6822.

88

89

90 The distance to the Carb Nebula Linear distance Angular distance

91

92

93 Other Aladin educational activities include scenarios on: Motion of stars Confirmation of supernovae The distance to Andromeda Star Clusters The disc of the Milky Way

94 Stellarium Free to to download Shows very realistic atmosphere, sunrise and sunset Calculates positions of Sun and Moon, planets and stars Draws the sky Draws both constellation diagrams and artistic representations. Gives astronomical data of most of the celestial objects (coordinates, magnitude, distance, etc.) Stellarium may be used as an educational tool for kids, for students, and for amateur astronomers.

95

96

97

98 Constellations provide to modern astronomers a way to segment the sky into regions to locate celestial objects.

99

100

101

102

103

104

105

106

107

108

109 Other Possibilities Show the difference between planets, stars by their fast motion over Demonstrate how the view of the sky changes with different locations on Earth or different seasons. In the internet, one finds many other examples for demonstrations (just follow the links from stellarium.org)

110 Some useful links IVOA - htp:// EURO-VO: Stellarium: Aladin: WWT: VAO: VIREO: www3.gettysburg.edu/~marschal/clea/ Vireo.html SimPlay:

111 IS VO the astronomy without telescope? The computer is the new Telescope and The database is the new sky You can make first-rate observational discoveries without ever going observing Good bye, HartRAO astronomy dominance model!

112 Conclusions The Virtual Observatory should become a standard tool not only for professional astronomers, simplifying their work, but also for anyone who wants to introduce people to the vast amount of knowledge and beauty that is uncovered by astronomical research. VO-the opportunity for everyone!

113 Enjoy the VO-Day(s)!! Thank You! &

Virtual Observatory (VO) An Introduction. Sudhanshu Barway South African Astronomical Observatory (SAAO), Cape Town

Virtual Observatory (VO) An Introduction. Sudhanshu Barway South African Astronomical Observatory (SAAO), Cape Town Virtual Observatory (VO) An Introduction Sudhanshu Barway South African Astronomical Observatory (SAAO), Cape Town March 19 th, 2009 About this presentation What is a Virtual Observatory? How does it work?

More information

D4.2. First release of on-line science-oriented tutorials

D4.2. First release of on-line science-oriented tutorials EuroVO-AIDA Euro-VO Astronomical Infrastructure for Data Access D4.2 First release of on-line science-oriented tutorials Final version Grant agreement no: 212104 Combination of Collaborative Projects &

More information

Virtual Observatory: Observational and Theoretical data

Virtual Observatory: Observational and Theoretical data Astrophysical Technology Group - OAT Virtual Observatory: Observational and Theoretical data Patrizia Manzato INAF-Trieste Astronomical Observatory 06 Dec 2007 Winter School, P.sso Tonale - P.Manzato 1

More information

Science in the Virtual Observatory

Science in the Virtual Observatory Mem. S.A.It. Vol. 80, 352 c SAIt 2009 Memorie della Science in the Virtual Observatory M.G. Allen Observatoire de Strasbourg UMR 7550 11 Rue de l Universite, F-67000 Strasbourg, France e-mail: allen@astro.u-strasbg.fr

More information

Real Astronomy from Virtual Observatories

Real Astronomy from Virtual Observatories THE US NATIONAL VIRTUAL OBSERVATORY Real Astronomy from Virtual Observatories Robert Hanisch Space Telescope Science Institute US National Virtual Observatory About this presentation What is a Virtual

More information

CONFIRMATION OF A SUPERNOVA IN THE GALAXY NGC6946

CONFIRMATION OF A SUPERNOVA IN THE GALAXY NGC6946 CONFIRMATION OF A SUPERNOVA IN THE GALAXY NGC6946 G. Iafrate and M. Ramella INAF - Astronomical Observatory of Trieste 1 Introduction Suddenly a star runs out its nuclear fuel. Its life as a normal star

More information

Virtual Observatories and Developing Countries

Virtual Observatories and Developing Countries A.C. Editor, B.D. Editor & C.E. Editor, eds. DOI: 00.0000/X000000000000000X Virtual Observatories and Developing Countries Ajit Kembhavi Inter-University Centre for Astronomy and Astrophysics, Pune, India

More information

Data challenges of the Virtual Observatory in Time Domain Astronomy

Data challenges of the Virtual Observatory in Time Domain Astronomy Data challenges of the Virtual Observatory in Time Domain Astronomy Ada Nebot Gomez-Moran Astronomical Data Analysis Software & Systems Nov. 11-15 2018 Time Domain Astronomy The study of variability of

More information

Introduction to the Sloan Survey

Introduction to the Sloan Survey Introduction to the Sloan Survey Title Rita Sinha IUCAA SDSS The SDSS uses a dedicated, 2.5-meter telescope on Apache Point, NM, equipped with two powerful special-purpose instruments. The 120-megapixel

More information

Exploiting Virtual Observatory and Information Technology: Techniques for Astronomy

Exploiting Virtual Observatory and Information Technology: Techniques for Astronomy Exploiting Virtual Observatory and Information Technology: Techniques for Astronomy Lecture #6 Goal: VO Workflows Science Usage Nicholas Walton AstroGrid Project Scientist Institute of Astronomy, The University

More information

RLW paper titles:

RLW paper titles: RLW paper titles: http://www.wordle.net Astronomical Surveys and Data Archives Richard L. White Space Telescope Science Institute HiPACC Summer School, July 2012 Overview Surveys & catalogs: Fundamental

More information

IVOA Beijing Interoperability meeting. Introductory talk. F. Genova, Beijing Interop, Plenary session introduction 1

IVOA Beijing Interoperability meeting. Introductory talk. F. Genova, Beijing Interop, Plenary session introduction 1 IVOA Beijing Interoperability meeting Introductory talk F. Genova, Beijing Interop, Plenary session introduction 1 The VO endeavour (1) Emergence of the Virtual Observatory concept by 2000 Concerns about

More information

Outreach Products integrated under Virtual Observatories and IDIS

Outreach Products integrated under Virtual Observatories and IDIS Europlanet N4 Outreach Products integrated under Virtual Observatories and IDIS Pedro Russo (Max Planck Institute for Solar System Research) russo@mps.mpg.de Virtual Observatories European Virtual Observatory

More information

Gaia data in the CDS portal. Sébastien Derriere, Mark Allen, Thomas Boch & CDS team Observatoire de Strasbourg, France

Gaia data in the CDS portal. Sébastien Derriere, Mark Allen, Thomas Boch & CDS team Observatoire de Strasbourg, France Gaia data in the CDS portal Sébastien Derriere, Mark Allen, Thomas Boch & CDS team Observatoire de Strasbourg, France Gaia Data Access Workshop, Heidelberg 19 Jun 2018 Centre de Données astronomique de

More information

Rick Ebert & Joseph Mazzarella For the NED Team. Big Data Task Force NASA, Ames Research Center 2016 September 28-30

Rick Ebert & Joseph Mazzarella For the NED Team. Big Data Task Force NASA, Ames Research Center 2016 September 28-30 NED Mission: Provide a comprehensive, reliable and easy-to-use synthesis of multi-wavelength data from NASA missions, published catalogs, and the refereed literature, to enhance and enable astrophysical

More information

Extragalactic research with. Igor Chilingarian

Extragalactic research with. Igor Chilingarian Extragalactic research with the Virtual Observatory Igor Chilingarian CDS - Observatoire de Strasbourg / SAI MSU AIVO School Belgrade Serbia 29 Jun 2010 Introduction The Virtual Observatory is a realisation

More information

Visualisation and analysis of 3D datasets in the Virtual Observatory

Visualisation and analysis of 3D datasets in the Virtual Observatory Collaborators: 3D2008 Workshop ESO Garching 12 Jun 2008 Visualisation and analysis of 3D datasets in the Virtual Observatory follow-up of the talks at ADASS-2005 and Spec&VO-2007 Igor Chilingarian LERMA

More information

THE HUBBLE SEQUENCE. This use case explores the morphology of galaxies and their classification according to the Hubble Sequence.

THE HUBBLE SEQUENCE. This use case explores the morphology of galaxies and their classification according to the Hubble Sequence. THE HUBBLE SEQUENCE G. Iafrate (a), M. Ramella (a) e V. Bologna (b) (a) INAF - Astronomical Observatory of Trieste (b) Istituto Comprensivo S. Giovanni - Sc. Sec. di primo grado M. Codermatz" - Trieste

More information

Exploiting Virtual Observatory and Information Technology: Techniques for Astronomy

Exploiting Virtual Observatory and Information Technology: Techniques for Astronomy Exploiting Virtual Observatory and Information Technology: Techniques for Astronomy Nicholas Walton AstroGrid Project Scientist Institute of Astronomy, The University of Cambridge Lecture #5 Goal: VO Applications

More information

An intelligent client application for on-line astronomical information

An intelligent client application for on-line astronomical information An intelligent client application for on-line astronomical information Chenzhou CUI Chinese Virtual Observatory Project National Astronomical Observatory of China VO concept Virtual Observatory (VO) is

More information

Introduction The Role of Astronomy p. 3 Astronomical Objects of Research p. 4 The Scale of the Universe p. 7 Spherical Astronomy Spherical

Introduction The Role of Astronomy p. 3 Astronomical Objects of Research p. 4 The Scale of the Universe p. 7 Spherical Astronomy Spherical Introduction The Role of Astronomy p. 3 Astronomical Objects of Research p. 4 The Scale of the Universe p. 7 Spherical Astronomy Spherical Trigonometry p. 9 The Earth p. 12 The Celestial Sphere p. 14 The

More information

Doing astronomy with SDSS from your armchair

Doing astronomy with SDSS from your armchair Doing astronomy with SDSS from your armchair Željko Ivezić, University of Washington & University of Zagreb Partners in Learning webinar, Zagreb, 15. XII 2010 Supported by: Microsoft Croatia and the Croatian

More information

On-line information in astronomy

On-line information in astronomy On-line information in astronomy From networking to a virtual observatory F. Genova, Open Archive Forum, 02/05/14 1 Why keeping data in astronomy? Long term observation of variable natural phenomena Major

More information

ESASky, ESA s new open-science portal for ESA space astronomy missions

ESASky, ESA s new open-science portal for ESA space astronomy missions ESASky, ESA s new open-science portal for ESA space astronomy missions Bruno Merín ESAC Science Data Centre European Space Agency bruno.merin@esa.int Visit to NAOC, Beijing, 19/05/2017 ESA UNCLASSIFIED

More information

Multi-instrument, multiwavelength. energy sources with the Virtual Observatory

Multi-instrument, multiwavelength. energy sources with the Virtual Observatory Multi-instrument, multiwavelength study of high energy sources with the Virtual Observatory Caroline Bot 1,2, François Bonnarel 1,2, René Goosmann 2 and Françoise Genova 1,2 1: Centre de Données astronomiques

More information

International Olympiad on Astronomy and Astrophysics (IOAA)

International Olympiad on Astronomy and Astrophysics (IOAA) Syllabus of International Olympiad on Astronomy and Astrophysics (IOAA) General Notes 1. Extensive contents in basic astronomical concepts are required in theoretical and practical problems. 2. Basic concepts

More information

Heic0115: EMBARGOED UNTIL: 10:00 (CET) WEDNESDAY 05 DECEMBER, 2001

Heic0115: EMBARGOED UNTIL: 10:00 (CET) WEDNESDAY 05 DECEMBER, 2001 Heic0115: EMBARGOED UNTIL: 10:00 (CET) WEDNESDAY 05 DECEMBER, 2001 News release: Exploring the Digital Universe with Europe s Astrophysical Virtual Observatory 05-December-2001 A new European initiative

More information

Modern Image Processing Techniques in Astronomical Sky Surveys

Modern Image Processing Techniques in Astronomical Sky Surveys Modern Image Processing Techniques in Astronomical Sky Surveys Items of the PhD thesis József Varga Astronomy MSc Eötvös Loránd University, Faculty of Science PhD School of Physics, Programme of Particle

More information

ESAC VOSPEC SCIENCE TUTORIAL

ESAC VOSPEC SCIENCE TUTORIAL SCIENCE ARCHIVES AND VO TEAM ESAC VOSPEC SCIENCE TUTORIAL COMPARING SPECTRA OF THE SUN AND SIMILAR STARS THEORY SECTION Tutorial created by Luis Sánchez, ESAC SOHO Archive scientist, adapted from the Tracking

More information

Studying galaxies with the Sloan Digital Sky Survey

Studying galaxies with the Sloan Digital Sky Survey Studying galaxies with the Sloan Digital Sky Survey Laboratory exercise, Physics of Galaxies, Spring 2017 (Uppsala Universitet) by Beatriz Villarroel *** The Sloan Digital Sky Survey (SDSS) is the largest

More information

Euro-VO. F. Genova, Interoperability meeting, 9 November 2009

Euro-VO. F. Genova, Interoperability meeting, 9 November 2009 Euro-VO F. Genova, Interoperability meeting, 9 November 2009 European astronomy A rich landscape including the two European Agencies, ESA and ESO, and national programmes Several of the founding parents

More information

Six Things Everyone Should Know About Astronomy (With Activities)

Six Things Everyone Should Know About Astronomy (With Activities) Six Things Everyone Should Know About Astronomy (With Activities) 1. The Organization of the Universe Powers of 10 Web Movie : http://micro.magnet.fsu.edu/primer/java/scienceopticsu/powersof10/ Toilet

More information

The IMCCE Virtual Observatory Solar System Portal

The IMCCE Virtual Observatory Solar System Portal The IMCCE Virtual Observatory Solar System Portal J. Berthier Institut de mécanique céleste et de calcul des éphémérides Observatoire de Paris / CNRS http://vo.imcce.fr/ Architecture of services SsoDNet

More information

Fundamental Astronomy

Fundamental Astronomy H. Karttunen P. Kroger H. Oja M.Poutanen K.J. Donner (Eds.) Fundamental Astronomy Fifth Edition With 449 Illustrations Including 34 Colour Plates and 75 Exercises with Solutions < J Springer VII 1. Introduction

More information

The Virtual Observatory: A New Revolutionary Way of Scientific Research. Astroinformatics, e-science. Petr Škoda

The Virtual Observatory: A New Revolutionary Way of Scientific Research. Astroinformatics, e-science. Petr Škoda The Virtual Observatory: A New Revolutionary Way of Scientific Research Astroinformatics, e-science Petr Škoda Astronomical Institute Academy of Sciences Ondřejov Czech Republic Astroinformatics and VO

More information

Digitising Astronomical Plates of the Heidelberg Königstuhl Archives

Digitising Astronomical Plates of the Heidelberg Königstuhl Archives Digitising Astronomical Plates of the Heidelberg Königstuhl Archives Florian Rothmaier, Markus Demleitner with contributions by Holger Mandel and Stephanie Schwemmer Zentrum für Astronomie Heidelberg Sofia,

More information

Current Status of Chinese Virtual Observatory

Current Status of Chinese Virtual Observatory Current Status of Chinese Virtual Observatory Chenzhou Cui, Yongheng Zhao National Astronomical Observatories, Chinese Academy of Science, Beijing 100012, P. R. China Dec. 30, 2002 General Information

More information

ISO and AKARI: paving the road to Herschel

ISO and AKARI: paving the road to Herschel ISO and AKARI: paving the road to Herschel ISO and AKARI ESA Project Scientist ISO Data Centre European Space Astronomy Centre (ESAC) 14-15 December 2006 ISO What s new with ISO? Highlights of Active Archive

More information

THE PLEIADES OPEN CLUSTER

THE PLEIADES OPEN CLUSTER THE PLEIADES OPEN CLUSTER G. Iafrate (a), M. Ramella (a) and P. Padovani (b) (a) INAF - Astronomical Observatory of Trieste (b) ESO - European Southern Observatory 1 Introduction Open star clusters are

More information

Science Operations with the Square Kilometre Array

Science Operations with the Square Kilometre Array Science Operations with the Square Kilometre Array Dr Antonio Chrysostomou Head of Science Operations Planning a.chrysostomou@skatelescope.org Outline Introduction to the SKA Science Programme Operational

More information

High-Energy Astrophysics and the Virtual Observatory

High-Energy Astrophysics and the Virtual Observatory Chin. J. Astron. Astrophys. Vol. 6 (2006), Suppl. 1, 73 81 (http://www.chjaa.org) Chinese Journal of Astronomy and Astrophysics High-Energy Astrophysics and the Virtual Observatory Paolo Padovani European

More information

Figure 19.19: HST photo called Hubble Deep Field.

Figure 19.19: HST photo called Hubble Deep Field. 19.3 Galaxies and the Universe Early civilizations thought that Earth was the center of the universe. In the sixteenth century, we became aware that Earth is a small planet orbiting a medium-sized star.

More information

1. The symbols below represent the Milky Way galaxy, the solar system, the Sun, and the universe.

1. The symbols below represent the Milky Way galaxy, the solar system, the Sun, and the universe. Name Date 1. The symbols below represent the Milky Way galaxy, the solar system, the Sun, and the universe. 4. The diagram below illustrates three stages of a current theory of the formation of the universe.

More information

ASTRONOMY. Chapter 1 SCIENCE AND THE UNIVERSE: A BRIEF TOUR PowerPoint Image Slideshow

ASTRONOMY. Chapter 1 SCIENCE AND THE UNIVERSE: A BRIEF TOUR PowerPoint Image Slideshow ASTRONOMY Chapter 1 SCIENCE AND THE UNIVERSE: A BRIEF TOUR PowerPoint Image Slideshow FIGURE 1.1 Distant Galaxies. These two interacting islands of stars (galaxies) are so far away that their light takes

More information

Using Authentic Astronomical Data in Investigations & Activities. Version 1.1, presented at CONASTA 59, UTS, Monday 5 July 2010.

Using Authentic Astronomical Data in Investigations & Activities. Version 1.1, presented at CONASTA 59, UTS, Monday 5 July 2010. Using Authentic Astronomical Data in Investigations & Activities. Version 1.1, presented at CONASTA 59, UTS, Monday 5 July 2010. Abstract: Astronomy is undergoing a revolution in the size and availability

More information

PHYS/ASTR 2060 Popular Observational Astronomy(3) Syllabus

PHYS/ASTR 2060 Popular Observational Astronomy(3) Syllabus PHYS/ASTR 2060 Popular Observational Astronomy(3) Syllabus Instructor: Prof. Wayne Springer (wayne.springer@utah.edu) Office: 226 INSCC (Office Hours: T 3PM-5PM or by appt.) Phone: 801-585-1390 TA: Jinqi

More information

Galaxies. Beyond the Book. FOCUS Book. Make a model that helps demonstrate how the universe is expanding. Follow these steps:

Galaxies. Beyond the Book. FOCUS Book. Make a model that helps demonstrate how the universe is expanding. Follow these steps: FOCUS Book Galaxies Make a model that helps demonstrate how the universe is expanding. Follow these steps: 1 Use markers to make dots on the outside of an uninflated balloon to represent galaxies full

More information

Excerpts from previous presentations. Lauren Nicholson CWRU Departments of Astronomy and Physics

Excerpts from previous presentations. Lauren Nicholson CWRU Departments of Astronomy and Physics Excerpts from previous presentations Lauren Nicholson CWRU Departments of Astronomy and Physics Part 1: Review of Sloan Digital Sky Survey and the Galaxy Zoo Project Part 2: Putting it all together Part

More information

Hubble s Law and the Cosmic Distance Scale

Hubble s Law and the Cosmic Distance Scale Lab 7 Hubble s Law and the Cosmic Distance Scale 7.1 Overview Exercise seven is our first extragalactic exercise, highlighting the immense scale of the Universe. It addresses the challenge of determining

More information

BHS Astronomy: Galaxy Classification and Evolution

BHS Astronomy: Galaxy Classification and Evolution Name Pd Date BHS Astronomy: Galaxy Classification and Evolution This lab comes from http://cosmos.phy.tufts.edu/~zirbel/ast21/homework/hw-8.pdf (Tufts University) The word galaxy, having been used in English

More information

THE HUBBLE SEQUENCE. Information and contacts: -

THE HUBBLE SEQUENCE. Information and contacts:  - THE HUBBLE SEQUENCE G. Iafrate (a), M. Ramella (a) e V. Bologna (b) (a) INAF - Astronomical Observatory of Trieste (b) Istituto Comprensivo S. Giovanni - Sc. Sec. di primo grado M. Codermatz" - Trieste

More information

Compute Redshifts of Quasars Using SPLAT-VO

Compute Redshifts of Quasars Using SPLAT-VO Compute Redshifts of Quasars Using SPLAT-VO M. Castro Neves, based on the VOSpec Tutorial by Phil Furneaux and Deborah Baines May 26, 2016 Abstract In this tutorial you will use SPLAT-VO to search for

More information

A Library of the X-ray Universe: Generating the XMM-Newton Source Catalogues

A Library of the X-ray Universe: Generating the XMM-Newton Source Catalogues A Library of the X-ray Universe: Generating the XMM-Newton Source Catalogues Iris Traulsen Axel Schwope, Georg Lamer Leibniz-Institut für Astrophysik Potsdam (AIP) on behalf of the XMM-Newton Survey Science

More information

A Vision for the US Virtual Astronomical Observatory. October D. De Young (NOAO), VAO Project Scientist

A Vision for the US Virtual Astronomical Observatory. October D. De Young (NOAO), VAO Project Scientist A Vision for the US Virtual Astronomical Observatory October 2010 D. De Young (NOAO), VAO Project Scientist with contributions from R. J. Hanisch (STScI), VAO Director A. Szalay (JHU), VAO Technology Advisor

More information

Bringing Real-time Astronomical Observations into the Classroom

Bringing Real-time Astronomical Observations into the Classroom Bringing Real-time Astronomical Observations into the Classroom Prof. Lynn Cominsky Sonoma State University Department of Physics and Astronomy and NASA Education and Public Outreach Group Why do astronomical

More information

PlanetQuest The Planet-Wide Observatory

PlanetQuest The Planet-Wide Observatory PlanetQuest The Planet-Wide Observatory SUMMARY PlanetQuest will make it possible for millions of people, using their computers and our data, to search the galaxy for undiscovered planets, catalog and

More information

V International Astronomy Olympiad

V International Astronomy Olympiad EURO-ASIAN ASTRONOMICAL SOCIETY V International Astronomy Olympiad 20-27. 10. 2000. SAO RAS, Nizhnij Arkhyz Theoretical round. Problems to solve Group A. 1. As you know, the most widely used calendar in

More information

Exercise: The Relation between the Brightness of Supernovae and the Distance to Galaxies

Exercise: The Relation between the Brightness of Supernovae and the Distance to Galaxies Exercise: The Relation between the Brightness of Supernovae and the Distance to Galaxies Guide for Teachers Aim of this educational materials The supernova explosion is used as a method to measure the

More information

Lecture 11 Quiz 2. AGN and You. A Brief History of AGN. This week's topics

Lecture 11 Quiz 2. AGN and You. A Brief History of AGN. This week's topics Lecture 11 Quiz 2 AGN and You March 25 2003 8:00 PM BPS 1420 1. What system of time do astronomers use rather than the standard day-month-year system? 2. In that system, how long would it be between noon

More information

AN INTRODUCTIONTO MODERN ASTROPHYSICS

AN INTRODUCTIONTO MODERN ASTROPHYSICS AN INTRODUCTIONTO MODERN ASTROPHYSICS Second Edition Bradley W. Carroll Weber State University DaleA. Ostlie Weber State University PEARSON Addison Wesley San Francisco Boston New York Cape Town Hong Kong

More information

v1.3, 11/9/2017 CASSIS as a spectroscopy tool for VESPA S. Erard, J.-M. Glorian, P. Le Sidaner, C. Chauvin

v1.3, 11/9/2017 CASSIS as a spectroscopy tool for VESPA S. Erard, J.-M. Glorian, P. Le Sidaner, C. Chauvin v1.3, 11/9/2017 CASSIS as a spectroscopy tool for VESPA S. Erard, J.-M. Glorian, P. Le Sidaner, C. Chauvin Go to VESPA portal http://vespa.obspm.fr Click "Submit" to search public data services, or first

More information

arxiv: v1 [astro-ph.im] 11 May 2010 Alberto Accomazzi Harvard-Smithsonian Center for Astrophysics

arxiv: v1 [astro-ph.im] 11 May 2010 Alberto Accomazzi Harvard-Smithsonian Center for Astrophysics Towards a Resource-Centric Data Network for Astronomy arxiv:1005.1886v1 [astro-ph.im] 11 May 2010 Harvard-Smithsonian Center for Astrophysics E-mail: aaccomazzi@cfa.harvard.edu Michael J. Kurtz Harvard-Smithsonian

More information

Quasars in the SDSS. Rich Kron NGC June 2006 START CI-Team: Variable Quasars Research Workshop Yerkes Observatory

Quasars in the SDSS. Rich Kron NGC June 2006 START CI-Team: Variable Quasars Research Workshop Yerkes Observatory Quasars in the SDSS Rich Kron 28 June 2006 START CI-Team: Variable Quasars Research Workshop Yerkes Observatory NGC 1068 About 10% of all of the spectra in the SDSS database are of quasars (as opposed

More information

Australia s Optical Data Centre

Australia s Optical Data Centre Australia s Optical Data Centre A Data Central and SkyMapper Collaboration Milky Way over the Pinnacles in Australia - Michael Goh Explore Tools for data retrieval and automatic cross-matching make for

More information

Square Kilometer Array:

Square Kilometer Array: Square Kilometer Array: The worlds most powerful radio telescope! Paul Bourke ivec@uwa With support from ICRAR (International Centre for Radio Astronomy) Outline History SKA (Square Kilometer Array) ASKAP

More information

Deep Sky Astronomy page James E. Kotoski

Deep Sky Astronomy page James E. Kotoski page 1 2001 James E. Kotoski Part II: What is? Have you ever wondered where our solar system came from, or... what is going to happen to it when it dies? Have you ever wondered what a galaxy was, and where

More information

Alternative Pre- Observation Catalogue for Photometric Follow- Up of Transiting Exoplanets

Alternative Pre- Observation Catalogue for Photometric Follow- Up of Transiting Exoplanets Alternative Pre- Observation Catalogue for Photometric Follow- Up of Transiting Exoplanets Terreka S Hart Tennessee State University Advisor: Dr John A Johnson University of Hawai i - Institute for Astronomy

More information

AstroGrid and the Virtual Observatory

AstroGrid and the Virtual Observatory AstroGrid and the Virtual Observatory Nicholas Walton AstroGrid and Euro-VO Technology Centre Project Scientist (Institute of Astronomy, University of Cambridge) Anita Richards (Jodrell Bank Observatory,

More information

TELESCOPE OBSERVING. EQUIPMENT: Observatory telescopes, observing forms, and a pencil. Be sure to dress warmly - the observing deck is not heated!

TELESCOPE OBSERVING. EQUIPMENT: Observatory telescopes, observing forms, and a pencil. Be sure to dress warmly - the observing deck is not heated! ASTR 1030 Astronomy Lab 161 Telescope Observing TELESCOPE OBSERVING SYNOPSIS: You will view and sketch a number of different astronomical objects through the SBO telescopes. The requirements for credit

More information

SKINAKAS OBSERVATORY. Astronomy Projects for University Students PROJECT GALAXIES

SKINAKAS OBSERVATORY. Astronomy Projects for University Students PROJECT GALAXIES PROJECT 7 GALAXIES Objective: The topics covered in the previous lessons target celestial objects located in our neighbourhood, i.e. objects which are within our own Galaxy. However, the Universe extends

More information

Advanced Astronomy, C.P.

Advanced Astronomy, C.P. East Penn School District Secondary Curriculum A Planned Course Statement for Advanced Astronomy, C.P. Course # 422 Grade(s) 10, 11,12 Department: Science ength of Period (mins.) 40 Total Clock Hours:

More information

Skyalert: Real-time Astronomy for You and Your Robots

Skyalert: Real-time Astronomy for You and Your Robots Astronomical Data Analysis Software and Systems XVIII ASP Conference Series, Vol. 411, c 2009 D. Bohlender, D. Durand and P. Dowler, eds. Skyalert: Real-time Astronomy for You and Your Robots R. D. Williams,

More information

Astronomy of the Next Decade: From Photons to Petabytes. R. Chris Smith AURA Observatory in Chile CTIO/Gemini/SOAR/LSST

Astronomy of the Next Decade: From Photons to Petabytes. R. Chris Smith AURA Observatory in Chile CTIO/Gemini/SOAR/LSST Astronomy of the Next Decade: From Photons to Petabytes R. Chris Smith AURA Observatory in Chile CTIO/Gemini/SOAR/LSST Classical Astronomy still dominates new facilities Even new large facilities (VLT,

More information

BAYESIAN CROSS-IDENTIFICATION IN ASTRONOMY

BAYESIAN CROSS-IDENTIFICATION IN ASTRONOMY BAYESIAN CROSS-IDENTIFICATION IN ASTRONOMY / The Johns Hopkins University Sketch by William Parsons (1845) 2 Recording Observations Whirlpool Galaxy M51 Discovered by Charles Messier (1773) Multicolor

More information

Learning Objectives. distances to objects in our Galaxy and to other galaxies? apparent magnitude key to measuring distances?

Learning Objectives. distances to objects in our Galaxy and to other galaxies? apparent magnitude key to measuring distances? The Distance Ladder Learning Objectives! What is the distance ladder? How do we measure distances to objects in our Galaxy and to other galaxies?! How are the concepts of absolute magnitude and apparent

More information

9.6. Other Components of the Universe. Star Clusters. Types of Galaxies

9.6. Other Components of the Universe. Star Clusters. Types of Galaxies Other Components of the Universe 9.6 The most common type of celestial object astronomers see in space is a star. Most stars appear to be gravitationally bound together into groups, and some groups are

More information

The POLLUX database of synthetic stellar spectra

The POLLUX database of synthetic stellar spectra International Workshop on Stellar Spectral Libraries ASI Conference Series, 2012, Vol. 6, pp 63 70 Edited by Ph. Prugniel & H. P. Singh The POLLUX database of synthetic stellar spectra A. Palacios 1, A.

More information

OPTION E, ASTROPHYSICS TEST REVIEW

OPTION E, ASTROPHYSICS TEST REVIEW IB PHYSICS Name: DEVIL PHYSICS Period: Date: BADDEST CLASS ON CAMPUS OPTION E, ASTROPHYSICS TEST REVIEW S1. This question is about the nature of certain stars on the Hertzsprung-Russell diagram and determining

More information

INSIDE LAB 9: Classification of Stars and Other Celestial Objects

INSIDE LAB 9: Classification of Stars and Other Celestial Objects INSIDE LAB 9: Classification of Stars and Other Celestial Objects OBJECTIVE: To become familiar with the classification of stars by spectral type, and the classification of celestial objects such as galaxies.

More information

These notes may contain copyrighted material! They are for your own use only during this course.

These notes may contain copyrighted material! They are for your own use only during this course. Licensed for Personal Use Only DO NOT DISTRIBUTE These notes may contain copyrighted material! They are for your own use only during this course. Distributing them in anyway will be considered a breach

More information

Unit 7 Review Guide: The Universe

Unit 7 Review Guide: The Universe Unit 7 Review Guide: The Universe Light Year: Unit of distance used to measure the great vastness of space. Galaxy: Large group of stars, gas, and dust held together by gravity. Spiral Galaxy: Galaxy in

More information

The GALEX Observations of Planetary Nebulae. Ananta C. Pradhan 1, M. Parthasarathy 2, Jayant Murthy 3 and D. K. Ojha 4

The GALEX Observations of Planetary Nebulae. Ananta C. Pradhan 1, M. Parthasarathy 2, Jayant Murthy 3 and D. K. Ojha 4 The GALEX Observations of Planetary Nebulae. Ananta C. Pradhan 1, M. Parthasarathy 2, Jayant Murthy 3 and D. K. Ojha 4 1 National Institute of Technology, Odisha 769008, India 2 Inter-University Centre

More information

Multi-wavelength Astronomy

Multi-wavelength Astronomy astronomy Multi-wavelength Astronomy Content What do we measure Multi-wavelength approach Data Data Mining Virtual Observatory Hands on session Larmor's formula Maxwell's equations imply that all classical

More information

The Virtual Telescope project: Enjoy the Universe from your Desktop.

The Virtual Telescope project: Enjoy the Universe from your Desktop. PRESS RELEASE November 6 th 2006 FOR IMMEDIATE RELEASE Authors: Gianluca Masi and Sotira Trifourki Contact:Gianluca Masi Bellatrix Astronomical Observatory Via Madonna de Loco, 47 03023 Ceccano (FR) ITALY

More information

Hubble Ultra Deep Space View

Hubble Ultra Deep Space View Galaxies stars come in large groups (20-1000 billion stars) called Galaxies >2 trillion observable galaxies. Come in Shapes and Sizes depending on how they were formed Elliptical (football shape) Spirals

More information

Arvind Borde / AST 10, Week 8: Galaxies I

Arvind Borde / AST 10, Week 8: Galaxies I Arvind Borde / AST 10, Week 8: Galaxies I It s been known by us, from the dawn of us, that there are stars in the sky. There are also hazy patches called nebulae: objects outside the solar system that

More information

Characterizing the Gigahertz radio sky

Characterizing the Gigahertz radio sky THE US NATIONAL VIRTUAL OBSERVATORY Mining multi-wavelength data in large area surveys with VO tools Yogesh Wadadekar STScI This work is partly supported by a NVO Research Initiative award. Collaborator:

More information

Chapter 19 Galaxies. Hubble Ultra Deep Field: Each dot is a galaxy of stars. More distant, further into the past. halo

Chapter 19 Galaxies. Hubble Ultra Deep Field: Each dot is a galaxy of stars. More distant, further into the past. halo Chapter 19 Galaxies Hubble Ultra Deep Field: Each dot is a galaxy of stars. More distant, further into the past halo disk bulge Barred Spiral Galaxy: Has a bar of stars across the bulge Spiral Galaxy 1

More information

... Explain how an orbiting planet causes a Doppler shift in the spectrum of a star

... Explain how an orbiting planet causes a Doppler shift in the spectrum of a star Q1.In 1999 a planet was discovered orbiting a star in the constellation of Pegasus. (a) State one reason why it is difficult to make a direct observation of this planet..... (1) The initial discovery of

More information

Galaxies & Introduction to Cosmology

Galaxies & Introduction to Cosmology Galaxies & Introduction to Cosmology Other Galaxies: How many are there? Hubble Deep Field Project 100 hour exposures over 10 days Covered an area of the sky about 1/100 the size of the full moon Probably

More information

NASA/IPAC EXTRAGALACTIC DATABASE

NASA/IPAC EXTRAGALACTIC DATABASE GRITS 2009 NASA/IPAC EXTRAGALACTIC DATABASE 20 years, 163 million objects, 3.3 billion rows, and beyond The Team Rick Ebert presenting What is? Mission A brief history 20 years, 3 dbms, multiple uif The

More information

WorldWide Telescope in Research and Education

WorldWide Telescope in Research and Education WorldWide Telescope in Research and Education The Harvard community has made this article openly available. Please share how this access benefits you. Your story matters. Citation Accessed Citable Link

More information

Bright Quasar 3C 273 Thierry J-L Courvoisier. Encyclopedia of Astronomy & Astrophysics P. Murdin

Bright Quasar 3C 273 Thierry J-L Courvoisier. Encyclopedia of Astronomy & Astrophysics P. Murdin eaa.iop.org DOI: 10.1888/0333750888/2368 Bright Quasar 3C 273 Thierry J-L Courvoisier From Encyclopedia of Astronomy & Astrophysics P. Murdin IOP Publishing Ltd 2006 ISBN: 0333750888 Institute of Physics

More information

Project BULGARIAN VIRTUAL OBSERVATORY

Project BULGARIAN VIRTUAL OBSERVATORY Project BULGARIAN VIRTUAL OBSERVATORY The present project addresses the principles and objectives stated in the national strategy for scientific research. Its implementation will result in bringing into

More information

ASTROPHYSICS. K D Abhyankar. Universities Press S T A R S A ND G A L A X I E S

ASTROPHYSICS. K D Abhyankar. Universities Press S T A R S A ND G A L A X I E S ASTROPHYSICS S T A R S A ND G A L A X I E S K D Abhyankar Universities Press Contents Foreword vii Preface ix 1 Introduction 1 1.1 ' Astronomy and astrophysics 1 1.2 Importance of astronomy 2 1.3 Methods

More information

Lecture Outlines. Chapter 23. Astronomy Today 8th Edition Chaisson/McMillan Pearson Education, Inc.

Lecture Outlines. Chapter 23. Astronomy Today 8th Edition Chaisson/McMillan Pearson Education, Inc. Lecture Outlines Chapter 23 Astronomy Today 8th Edition Chaisson/McMillan Chapter 23 The Milky Way Galaxy Units of Chapter 23 23.1 Our Parent Galaxy 23.2 Measuring the Milky Way Discovery 23-1 Early Computers

More information

Data Center. b ss. Ulisses Barres de Almeida Astrophysicist / CBPF! CBPF

Data Center. b ss. Ulisses Barres de Almeida Astrophysicist / CBPF! CBPF CBPF Ministry of Science, Technology, Innovation and Communications Centro Brasileiro de Pesquisas Físicas Brazilian Center for Physics Research b ss The Brazilian Science dc d c Data Center A web-based

More information

New Astronomy With a Virtual Observatory

New Astronomy With a Virtual Observatory New Astronomy With a Virtual Observatory S. G. Djorgovski (Caltech) With special thanks to R. Brunner, A. Szalay, A. Mahabal, et al. Introduction: Astronomy in the Era of Information Abundance The Virtual

More information

PhysicsAndMathsTutor.com 1

PhysicsAndMathsTutor.com 1 PhysicsAndMathsTutor.com 1 1. (a) Figure 1 shows two stars, A and B, which form a binary star system. The two stars orbit their common centre of mass with the same period of rotation. The Earth is in the

More information

@astro_stephi. Telescopes. CAASTRO in the Classroom: National Science Week Stephanie Bernard, University of Melbourne

@astro_stephi. Telescopes. CAASTRO in the Classroom: National Science Week Stephanie Bernard, University of Melbourne @astro_stephi Telescopes CAASTRO in the Classroom: National Science Week 2017 Stephanie Bernard, University of Melbourne About me NASA, ESA NASA, JPL The first telescopes Invented in 1600s in the Netherlands

More information