Statistics and Visualization of Radio Frequency Interference

Size: px
Start display at page:

Download "Statistics and Visualization of Radio Frequency Interference"

Transcription

1 Statistics and Visualization of Radio Frequency Interference Ellie White October 2016 Abstract This paper gives a summary of the results of a radio frequency interference mitigation project. Radio frequency interference (RFI) is a problem radio astronomers are facing increasingly in recent years. The goals of this project were: 1) investigate the cost vs. benefits of real-time RFI flagging, 2) determine ways of statistically flagging RFI by doing noise simulations, and 3) to develop a visualization tool in order to allow astronomers to easily see the RFI in their data set. The outcomes of these goals are described here. 1 Introduction In order to carry out their research, astronomers depend on sensitive, accurate, and unobstructed measurements of the light from faint, distant celestial objects. Unfortunately, astronomers up and down the spectrum are facing increasing challenges from electromagnetic interference. In the optical wavelengths, this takes the form of light pollution; errant ambient light from cities and suburbs. The analogue to this in radio astronomy is radio frequency interference (RFI). RFI is any unwanted, obstructive signal in radio astronomers data, caused by narrow- and broad-band transmitters that emit radiation at frequencies which overlap with those used for radio astronomy [1]. It has become harder and harder to avoid these harmful emissions due to the increase in electronic technologies which emit at RF wavelengths both intentionally (e.g. cell phones), and unintentionally (power lines) 1. The growing prevalence of RFI is proving to be a challenge for many radio astronomy observatories, causing a need for coping strategies. Some such solutions are location-based; observatories seek to locate themselves in remote areas away from cities and heavily populated places where RFI is more common [1]. In special cases, the observatory may set up, or locate itself within, a radio quiet zone. A current example of this is the U.S. National Radio Quiet Zone (NRQZ) which encompasses a 13,000 square mile area spanning parts of Virginia and West Virginia. It was put in place to protect the radio sky for the Green Bank Observatory (formerly the Green Bank National Radio Astronomy Observatory), and also for the (now defunct) U.S. Naval Facility in Sugar Grove, WV. The NRQZ imposes regulations on RF transmitters within its perimeter to ensure that they interfere minimally with the observing that is being done by the GBO and by the formerly Navy-operated NSA facility in Sugar Grove 2. However, even in remote places or radio quiet zones, RFI cannot be totally eliminated - emissions from sources such as satellites, lightning, and the occasional stray digital camera continue to cause interference. Therefore, radio astronomers must have ways to eliminate RFI once it has entered their receivers. Several methods of removing RFI from data have been implemented, both offline and real-time mitigation. In section 2, the reasons for attempting real-time RFI mitigation will be outlined in order to explain the purpose of this project. A description of the statistical analysis that was done in order to characterize the RFI in the data stream is given in section 3. Section 4 provides a description of the development of the visualization tool (RFIND) used to display the RFI data. Section 5 gives an overview of the results and features of the RFIND tool. In conclusion, the results of this project are discussed in section 6. 1 Radio Frequency Interference National Radio Quiet Zone

2 Figure 1: The spike on the right hand side (from MHz) is an example of RFI, possibly caused by the Military Satellite Communications system, MUOS. 2 Real-Time Flagging The purpose of this project was to experiment with ways to flag radio frequency interference in data streaming from GUPPI and (eventually) VEGAS in real time, and to visually display the flagged data. There were a few motivations for investigating real-time RFI mitigation; one is that post-correlation processing is quite a bit time consuming than real-time flagging [2]. Another issue is the fact that during offline processing, data is averaged over second-long time intervals. Thus, relatively large chunks of data may be ruined if they contain any RFI, even if the RFI only lasts for a fraction of the total time interval. Figure 1 shows an example of a 1 second piece of data containing RFI (possibly from the Military Satellite Communications system, MUOS). Although this particular data can be salvaged by offline processing, it clearly shows how the intensity of the RFI poorly affects the average value, bringing it artificially higher. Flagging RFI in real time provides a solution to this problem. By implementing algorithms which delete short time intervals containing data displaying the properties of RFI, the rest of the data in the sample can be salvaged. Keith Omogrosso of Oregon Tech developed the RFI Characterization on GUPPI (RCOG) program, which will eventually be capable of flagging and removing very short time slices ( 10 ms) of RFI in the data stream in real time [3]. Data is flagged as RFI based on statistical parameters, with the thresholds determined partially by simulation. 2

3 3 Calculation of Flagging Statistics Most astronomical and natural signals display the properties of Additive White Gaussian Noise (AWGN). AWGN is, as the name suggests, a type of random, uniform-across-frequency noise, with values that are normally distributed around a mean of zero 3. RFI displays statistical characteristics which are usually clearly distinguishable from those of AWGN. In order to determine what typical (good) data should look like in the absence of RFI, Python simulations of AWGN were conducted. To accomplish this, statsdemo.py was written. In this program, two NumPy random normal (Gaussian) arrays - xi and xq - were generated to represent the in-phase and quadrature components of the X-polarization voltage signal. After taking the power of these arrays and adding them, statistical analysis was done on trials. The probability distribution of the power values fit a chi-squared distribution with two degrees of freedom. With this in mind, it was decided to use a few different methods of calculating the flag statistics; the two methods were labelled Flag 1 and Flag 2. Figure 2: This plot shows the distribution of the results of the Flag 1 calculations. Flag 1 was calculated by taking the mean and the root mean squared (rms) of the power values for each of the trials, then calculating (rms/mean) 1 (1) for each trial, to get the resulting flag values. Since for a chi-squared distribution the mean is usually equal to the rms, Equation 1 should normally equal to zero or near zero for the Gaussian values of AWGN 4. 3 Additive white Gaussian noise white Gaussian noise. 4 Chi-squared distribution distribution 3

4 To test if this was true in practice, the flag values were plotted in a histogram. As is clear from Figure 2, the values were indeed centered around a mean of zero. The Flag 1 values appeared to be approximately normally distributed around this mean, so it was assumed that for any value greater than ±3σ from the mean (in this case, above +0.1 or below 0.1), the data would be flagged as containing RFI. Figure 3: This plot shows the distribution of the results of the Flag 2 calculations. The second flag value (Flag 2) was calculated by a slightly different method. This time kurtosis (a measure of the tailedness of a distribution) was used. For a chi-squared distribution with 2 degrees of freedom, the expected excess kurtosis is 6, so (excess kurtosis/6) 1 (2) was calculated, and was expected to equal around zero in most cases. Again, the resulting values of calculated trials were plotted on a histogram. This time, for whatever reason the resulting distribution, shown in Figure 3, was clearly not Gaussian and seemed to be somewhat positively skewed. However, it did appear that percent (3σ) of the values fell between and 3.3, so any values outside that range may be considered RFI. To obtain the statistical values of the input data, as mentioned in section 2 Keith Omogrosso developed the RCOG tool. This program reads in stored data from the GUPPI backend and uses GPU code to create the spectrogram (by performing Fast Fourier Transforms) and calculate the mean, rms, skew, kurtosis, min, max, and variance of this data. RCOG demonstrated with stored GUPPI data that GPU RFI characterization is a fast and accurate, and thus a practical solution. See [3] for more information. The spectrogram and statistics from RCOG were streamed to the Python visualization program RFIND, which is described in the following section. 4

5 4 Visualization Tool In addition to calculating the statistics necessary to flag the RFI, part of this project s scope was to develop a tool which would visually represent the flagged data in a readable and user-friendly manner. The desired outcome was an updating spectrogram plot which would emphasize the RFI present in the data map with color (like a weather map) and would have a few other helpful interactive features as well. A few different options were considered for developing this tool. One possibility was GNURadio, an open-source toolkit which provides pre-made radio signal processing blocks in an intuitive and user-friendly environment. It seemed like the most helpful choice due to the fact that it included a spectrogram waterfall display sink and a time raster display sink, both of which seemed like they would possibly do what was needed with some slight tweaking. Unfortunately, as it turned out, the time raster plot didn t work at all, and the waterfall plot was missing features and did not quite provide what was needed. The GNURadio mailing list provided little assistance with these problems, so with all of those issues in mind it was decided that GNURadio wasn t suitable for the purpose of this project. The next tools considered were Matplotlib and PyQtGraph, which are open-source Python GUI and graphics libraries. Although using a Python library would not give ready-made display tools, this would allow for more flexibility and seemed to be the next-simplest option available. It was decided early on that Matplotlib would not be the main package used; although it has more features and documentation than PyQtGraph, it is less streamlined and considerably slower to update plots. Since the spectrogram plot needed to update as near to real time as possible, PyQtGraph ended up as the main package that was used due to the speed of its updating plots. Matplotlib was used as a supplement for filling in gaps in PyQtGraph s functionality. Once this was determined, Python code was implemented to develop the tool: the Radio Frequency Interference Display (RFIND). 5 RFIND: Features and Results 5.1 Features The RFIND GUI, as seen in Figure 4, consists of four simultaneously updating plots, each of which assist in the data analysis process. The central feature is the spectrogram, streaming from RCOG, which shows the time (y-axis) and frequency (x-axis) of the data, and updates as the data is read in. Overlaid on this plot is a semi-translucent colormap, which labels high RFI values in red and low values in blue. Another feature of this plot is a moving crosshair, the x- and y- coordinates of which are given in the lower right corner of the GUI. In addition to this spectrogram plot, there are three other slightly smaller updating plots in RFIND. On the left of the spectrogram is the time series plot, and on the bottom is the bandpass. To the right is a plot showing the value of the flagging statistics which update alongside the spectrogram. This plot reads in the mean and rms values of the data from RCOG and performs the Flag 1 calculation. An additional nice built-in feature of all of these plots is that they may be zoomed in and panned, or autoscaled, depending on the observer s needs. 5.2 Results The end result was a fully functioning display GUI with some helpful features for data analysis and RFI flagging. As was the goal, it is a weather map type plot; while previous tools in use only displayed a very short time increment of perhaps only a second at a time, RFIND displays longer intervals. This helps give a more general feel for the current RFI climate, which could be helpful in terms of dynamic scheduling. For example, if project A depended upon having a relatively pristine RFI environment, but project B was less dependent upon that, then if the RFI is bad today as indicated by RFIND, project B would go ahead and take its observations and project A would wait for better conditions, etc. Of course there is room for improvement in some areas. One slight issue is that the spectrogram colormap seems to autoscale such that unremarkable levels of RFI/background noise may be labelled too brightly relative to their strength; with some minor tweaking this could likely be resolved. It would be useful 5

6 Figure 4: RFIND: Radio Frequency Interference Display eventually to be able to flip between Flag 1 and Flag 2 statistics based on user input, and also at some point a good addition would be to enable the display of multiple frequency channels at once in a tab-like format. 6 Conclusion In general, the main goals of the project were accomplished. RCOG efficiently and accurately produces the spectrogram and statistics from the stored GUPPI data faster than real-time. Since GUPPI is no longer the backend in use at Green Bank, RCOG will eventually be adapted to become RCOV, which will read in data from VEGAS, the new backend [3]. The goal of investigating flagging statistics through simulation was met as well. To test the accuracy of the estimates made based on the Python AWGN simulations, a sample set of GUPPI data containing known RFI was processed by RCOG and streamed to RFIND, where the flag calculations were performed. As it turned out, when the spectrogram displays RFI the corresponding flag plot data displays spikes exceeding the 3σ values determined in statsdemo.py, while normal (non-rfi) data falls within 3σ. So, in short, for the data used in this test the Python simulation results held. However, for greater accuracy it may be helpful to do more in-depth studies in the future. Finally, the goal of creating a real-time RFI display was achieved through the development of RFIND. As was desired, RFIND interactively displays the spectrogram and statistics from RCOG in a manner which allows the user to get a broader look at the present RFI conditions in a weather map type format. Although 6

7 there are certainly improvements which could be made (as outlined in section 5), the main objectives of RFIND were satisfied and it was demonstrated that PyQtGraph was a reasonably good tool for our purposes. References [1] RD Ekers and JF Bell. Radio frequency interference. In: arxiv preprint astro-ph/ (2000). [2] RA Series. Techniques for mitigation of radio frequency interference in radio astronomy. In: (2013). [3] Keith Omogrosso. Enabling GPUs to Mitigate RFI

NATIONAL RADIO ASTRONOMY OBSERVATORY MEMORANDUM

NATIONAL RADIO ASTRONOMY OBSERVATORY MEMORANDUM NATIONAL RADIO ASTRONOMY OBSERVATORY MEMORANDUM DATE: September 16, 1996 TO: M. Clark, B. Garwood, D. Hogg, H. Liszt FROM: Ron Maddalena SUBJECT: GBT and Aips++ requirements for traditional, all-sky pointing

More information

RFI Detectives Activity for Large Public Venues

RFI Detectives Activity for Large Public Venues RFI Detectives Activity for Large Public Venues Adapted from the NRAO s Be An Interference Detective activity Background Most people living near big cities are familiar with light pollution and how it

More information

Quantifying and mitigating correlated noise between formed beams on the ASKAP Phased Array Feeds

Quantifying and mitigating correlated noise between formed beams on the ASKAP Phased Array Feeds Quantifying and mitigating correlated noise between formed beams on the ASKAP Phased Array Feeds Ian Heywood,PaoloSerra,AidanHotan,DavidMcConnell CSIRO Astronomy & Space Science Abstract Pairs of beams

More information

Lecture #26: Searching for Other Civilizations. SETI = Search for Extra-Terrestrial Intelligence Searching for signals from other beings

Lecture #26: Searching for Other Civilizations. SETI = Search for Extra-Terrestrial Intelligence Searching for signals from other beings Lecture #26: Searching for Other Civilizations SETI = Search for Extra-Terrestrial Intelligence Searching for signals from other beings Searching for Other Civilizations Searching for signals from other

More information

Chapter 5. Telescopes. Copyright (c) The McGraw-Hill Companies, Inc. Permission required for reproduction or display.

Chapter 5. Telescopes. Copyright (c) The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Chapter 5 Telescopes Copyright (c) The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Tools of the Trade: Telescopes The Powers of a Telescope Collecting Power Bigger telescope,

More information

What is the Right Answer?

What is the Right Answer? What is the Right Answer??! Purpose To introduce students to the concept that sometimes there is no one right answer to a question or measurement Overview Students learn to be careful when searching for

More information

Chapter 5. Telescopes. Copyright (c) The McGraw-Hill Companies, Inc. Permission required for reproduction or display.

Chapter 5. Telescopes. Copyright (c) The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Chapter 5 Telescopes Copyright (c) The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Learning Objectives Upon completing this chapter you should be able to: 1. Classify the

More information

RFI Mitigation for the Parkes Galactic All-Sky Survey (GASS)

RFI Mitigation for the Parkes Galactic All-Sky Survey (GASS) RFI Mitigation for the Parkes Galactic All-Sky Survey (GASS) Peter Kalberla Argelander-Institut für Astronomie, Auf dem Hügel 71, D-53121 Bonn, Germany E-mail: pkalberla@astro.uni-bonn.de The GASS is a

More information

Telescopes... Light Buckets

Telescopes... Light Buckets Telescopes... Light Buckets Now that we have an understanding of what light is and why it s important to astronomy, what tools are required to study light from distant objects? The telescope is the tool

More information

1 Lecture, 2 September 1999

1 Lecture, 2 September 1999 1 Lecture, 2 September 1999 1.1 Observational astronomy Virtually all of our knowledge of astronomical objects was gained by observation of their light. We know how to make many kinds of detailed measurements

More information

Gnuradio Companion Considerations

Gnuradio Companion Considerations LightWork Memo 20: Gnuradio Companion Radio Astronomy 1 Subject: Radio Astronomy Blocks for Gnuradio Companion Memo: 20, Revision 3 From: Glen Langston, Kevin Bandura Date: 2018 May 17 Summary: New Gnuradio

More information

Chapter 6 Light and Telescopes

Chapter 6 Light and Telescopes Chapter 6 Light and Telescopes Guidepost In the early chapters of this book, you looked at the sky the way ancient astronomers did, with the unaided eye. In chapter 4, you got a glimpse through Galileo

More information

Interference Problems at the Effelsberg 100-m Telescope

Interference Problems at the Effelsberg 100-m Telescope Interference Problems at the Effelsberg 100-m Telescope Wolfgang Reich Max-Planck-Institut für Radioastronomie, Bonn Abstract: We summarise the effect of interference on sensitive radio continuum and polarisation

More information

The Robert C. Byrd Green Bank Telescope

The Robert C. Byrd Green Bank Telescope The Robert C. Byrd Green Bank Telescope Phil Jewell National Radio Astronomy Observatory 520 Edgemont Road Charlottesville, VA 22903-2475 USA pjewell@nrao.edu NAIC-NRAO School on Single Dish Radio Astronomy

More information

Telescopes. Optical Telescope Design. Reflecting Telescope

Telescopes. Optical Telescope Design. Reflecting Telescope Telescopes The science of astronomy was revolutionized after the invention of the telescope in the early 17th century Telescopes and detectors have been constantly improved over time in order to look at

More information

Telescopes. Optical Telescope Design. Reflecting Telescope

Telescopes. Optical Telescope Design. Reflecting Telescope Telescopes The science of astronomy was revolutionized after the invention of the telescope in the early 17th century Telescopes and detectors have been constantly improved over time in order to look at

More information

Event Capture α First Light. Abstract

Event Capture α First Light. Abstract CICADA Note # Event Capture α First Light Glen Langston, Brandon Rumberg, Patrick Brandt NRAO Green Bank August 7, 7 Abstract The Event Capture α data acquisition system, based on the U.C. Berkeley IBOB/ADC

More information

Lab 2 Working with the X-Band Interferometer

Lab 2 Working with the X-Band Interferometer Lab 2 Working with the X-Band Interferometer Abhimat Krishna Gautam 6 March 2012 ABSTRACT Lab 2 performed experiments with the X-Band Interferometer consisting of two dishes placed along an East-West axis.

More information

How to Measure and Record Light Spectrograph. The Photographic plate now obsolete Turbulence

How to Measure and Record Light Spectrograph. The Photographic plate now obsolete Turbulence PHYS 1411 Introduction to Astronomy Light and Telescope Chapter 6 Chapter 6 topics we have covered so far Radiation Information from Space Wave properties, light as a wave and particle, Electromagnetic

More information

Todays Topics 3/19/2018. Light and Telescope. PHYS 1403 Introduction to Astronomy. CCD Camera Makes Digital Images. Astronomical Detectors

Todays Topics 3/19/2018. Light and Telescope. PHYS 1403 Introduction to Astronomy. CCD Camera Makes Digital Images. Astronomical Detectors PHYS 1403 Introduction to Astronomy Light and Telescope Chapter 6 Todays Topics Astronomical Detectors Radio Telescopes Why we need space telescopes? Hubble Space Telescopes Future Space Telescopes Astronomy

More information

Lesson Plan 2 - Middle and High School Land Use and Land Cover Introduction. Understanding Land Use and Land Cover using Google Earth

Lesson Plan 2 - Middle and High School Land Use and Land Cover Introduction. Understanding Land Use and Land Cover using Google Earth Understanding Land Use and Land Cover using Google Earth Image an image is a representation of reality. It can be a sketch, a painting, a photograph, or some other graphic representation such as satellite

More information

From LOFAR to SKA, challenges in distributed computing. Soobash Daiboo Paris Observatory -LESIA

From LOFAR to SKA, challenges in distributed computing. Soobash Daiboo Paris Observatory -LESIA From LOFAR to SKA, challenges in distributed computing Soobash Daiboo Paris Observatory -LESIA Overview LOFAR telescope Data processing with LOFAR NenuFar SKA Summary LOFAR science drivers Key science

More information

Observation of neutral hydrogen using FFT spectrometer Argos on a 5m telescope

Observation of neutral hydrogen using FFT spectrometer Argos on a 5m telescope Research Collection Report Observation of neutral hydrogen using FFT spectrometer Argos on a 5m telescope Author(s): Monstein, Christian; Meyer, Hansueli Publication Date: 2006 Permanent Link: https://doi.org/10.3929/ethz-a-005228693

More information

The Perils of Right-angle Turns at DC

The Perils of Right-angle Turns at DC QuietPower columns The Perils of Right-angle Turns at DC Istvan Novak, Oracle, August 2017 Microwave engineers know that sharp corners and right-angle bends have their drawback at high frequencies. There

More information

How do you make an image of an object?

How do you make an image of an object? How do you make an image of an object? Use a camera to take a picture! But what if the object is hidden?...or invisible to the human eye?...or too far away to see enough detail? Build instruments that

More information

The Search for Extraterrestrial Intelligence

The Search for Extraterrestrial Intelligence The Search for Extraterrestrial Intelligence Methods for searching for life! Direct searches for microbial life in the solar system! rovers, sample return missions to Mars, Europa, etc.! Indirect searches

More information

Current and Future Instrumentation on the 100m Robert C. Byrd Green Bank Telescope

Current and Future Instrumentation on the 100m Robert C. Byrd Green Bank Telescope Current and Future Instrumentation on the 100m Robert C. Byrd Green Bank Telescope Author National Radio Astronomy Observatory E-mail: koneil@nrao.edu As the world s largest fully steerable single dish

More information

Lecture #26: Plan. Cosmology: Search for Intelligent Life in the Universe. The Great Unanswered Questions (cont d)

Lecture #26: Plan. Cosmology: Search for Intelligent Life in the Universe. The Great Unanswered Questions (cont d) Lecture #26: Plan Cosmology: The Great Unanswered Questions (cont d) Search for Intelligent Life in the Universe Reminders Course evaluations: CourseEvalUM.umd.edu Review session: Monday, December 11,

More information

Light and Telescope 10/24/2018. PHYS 1403 Introduction to Astronomy. Reminder/Announcement. Chapter Outline. Chapter Outline (continued)

Light and Telescope 10/24/2018. PHYS 1403 Introduction to Astronomy. Reminder/Announcement. Chapter Outline. Chapter Outline (continued) PHYS 1403 Introduction to Astronomy Light and Telescope Chapter 6 Reminder/Announcement 1. Extension for Term Project 1: Now Due on Monday November 12 th 2. You will be required to bring your cross staff

More information

Contributing to Astropy: A community Python library for astronomers

Contributing to Astropy: A community Python library for astronomers Macalester Journal of Physics and Astronomy Volume 4 Issue 1 Spring 2016 Article 6 May 2016 Contributing to Astropy: A community Python library for astronomers Asra Nizami Macalester College, anizami@macalester.edu

More information

PHYS 160 Astronomy Test #2 Fall 2017 Version A

PHYS 160 Astronomy Test #2 Fall 2017 Version A PHYS 160 Astronomy Test #2 Fall 2017 Version A I. True/False (1 point each) Circle the T if the statement is true, or F if the statement is false on your answer sheet. 1. A blackbody emits all of its radiation

More information

Community Survey. 1 of What type of street lighting do you prefer? Response Percent. Response Count

Community Survey. 1 of What type of street lighting do you prefer? Response Percent. Response Count Community Survey 1. What type of street lighting do you prefer? Percent LED (between Rowland Boulevard and Adele Drive) 60.0% 54 Induction (between Arthur Drive and Yukon Way) 45.6% 41 answered question

More information

Introduction GNURadio software implementation RFNoC implementation The End. RFNoC: fosphor. How to apply RFNoC to RTSA display acceleration

Introduction GNURadio software implementation RFNoC implementation The End. RFNoC: fosphor. How to apply RFNoC to RTSA display acceleration How to apply RFNoC to RTSA display acceleration FOSDEM 2015, February 1st, 2015 About the speaker Linux and free software enthusiast since 1999 M.Sc. in C.S. + some E.E. General orientation towards low

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

A Random Walk Through Astrometry

A Random Walk Through Astrometry A Random Walk Through Astrometry Astrometry: The Second Oldest Profession George H. Kaplan Astronomical Applications Department Astrometry Department U.S. Naval Observatory Random Topics to be Covered

More information

An Introduction to ASKAP Bringing Radio Interferometers Into the Multi-pixel Era

An Introduction to ASKAP Bringing Radio Interferometers Into the Multi-pixel Era An Introduction to ASKAP Bringing Radio Interferometers Into the Multi-pixel Era Aidan Hotan and Lisa Harvey-Smith 3 rd October 2014 CSIRO ASTRONOMY AND SPACE SCIENCE Introducing ASKAP The Australian SKA

More information

The Main Point. Familiar Optics. Some Basics. Lecture #8: Astronomical Instruments. Astronomical Instruments:

The Main Point. Familiar Optics. Some Basics. Lecture #8: Astronomical Instruments. Astronomical Instruments: Lecture #8: Astronomical Instruments Astronomical Instruments: Optics: Lenses and Mirrors. Detectors. Ground Based Telescopes: Optical, Infrared, and Radio. Space Based Telescopes. Spacecraft Missions.

More information

Image Compression. 1. Introduction. Greg Ames Dec 07, 2002

Image Compression. 1. Introduction. Greg Ames Dec 07, 2002 Image Compression Greg Ames Dec 07, 2002 Abstract Digital images require large amounts of memory to store and, when retrieved from the internet, can take a considerable amount of time to download. The

More information

The Theory of HPLC. Quantitative and Qualitative HPLC

The Theory of HPLC. Quantitative and Qualitative HPLC The Theory of HPLC Quantitative and Qualitative HPLC i Wherever you see this symbol, it is important to access the on-line course as there is interactive material that cannot be fully shown in this reference

More information

Using the ALTA Handheld Reflectance Spectrometer

Using the ALTA Handheld Reflectance Spectrometer Using the ALTA Handheld Reflectance Spectrometer The ALTA spectrometer is an active spectrometer, which means that it emits energy and measures how much of that energy is reflected back. The instrument

More information

Chapter 6 Telescopes: Portals of Discovery

Chapter 6 Telescopes: Portals of Discovery Chapter 6 Telescopes: Portals of Discovery 6.1 Eyes and Cameras: Everyday Light Sensors Our goals for learning: How does your eye form an image? How do we record images? How does your eye form an image?

More information

THE SPECTRUM OF A STAR

THE SPECTRUM OF A STAR THE SPECTRUM OF A STAR Overview: Stars can be classified by using the general shape and specific lines of their spectra. Objectives: The student will: perform a simple analysis of spectral lines to classify

More information

Electromagnetic Radiation and Scientific Instruments. PTYS April 1, 2008

Electromagnetic Radiation and Scientific Instruments. PTYS April 1, 2008 Electromagnetic Radiation and Scientific Instruments PTYS 206-2 April 1, 2008 Announcements Deep Impact 6 PM Wednesday Night Pizza, no beer Watch at home if you can t watch here. It will be discussed in

More information

Teaching Energy Balance using Round Numbers: A Quantitative Approach to the Greenhouse Effect and Global Warming

Teaching Energy Balance using Round Numbers: A Quantitative Approach to the Greenhouse Effect and Global Warming Teaching Energy Balance using Round Numbers: A Quantitative Approach to the Greenhouse Effect and Global Warming Brian Blais Science and Technology Department Bryant College bblais@bryant.edu August 29,

More information

Observation: NOT OBSERVING Either Not observing, Waiting, On Source, On reference, Scanning etc.

Observation: NOT OBSERVING Either Not observing, Waiting, On Source, On reference, Scanning etc. JODRELL BANK OBSERVATORY 7-M RADIO TELESCOPE: OBSERVING MANUAL The Jodrell Bank internet Observatory (JBiO) is a web interface to Jodrell Bank's 7-m radio telescope. The telescope itself is actually controlled

More information

ALMA Development Program

ALMA Development Program ALMA Development Program Jeff Kern CASA Team Lead Atacama Large Millimeter/submillimeter Array Expanded Very Large Array Robert C. Byrd Green Bank Telescope Very Long Baseline Array Opportunities for Software

More information

!P x. !E x. Bad Things Happen to Good Signals Spring 2011 Lecture #6. Signal-to-Noise Ratio (SNR) Definition of Mean, Power, Energy ( ) 2.

!P x. !E x. Bad Things Happen to Good Signals Spring 2011 Lecture #6. Signal-to-Noise Ratio (SNR) Definition of Mean, Power, Energy ( ) 2. Bad Things Happen to Good Signals oise, broadly construed, is any change to the signal from its expected value, x[n] h[n], when it arrives at the receiver. We ll look at additive noise and assume the noise

More information

HOW TO GET LIGHT FROM THE DARK AGES

HOW TO GET LIGHT FROM THE DARK AGES HOW TO GET LIGHT FROM THE DARK AGES Anthony Smith Lunar Seminar Presentation 2/2/2010 OUTLINE Basics of Radio Astronomy Why go to the moon? What should we find there? BASICS OF RADIO ASTRONOMY Blackbody

More information

Astro Tourism OPPORTUNITIES FOR ASTRO TOURISM IN THE NORTHERN AND WESTERN CAPE

Astro Tourism OPPORTUNITIES FOR ASTRO TOURISM IN THE NORTHERN AND WESTERN CAPE Astro Tourism OPPORTUNITIES FOR ASTRO TOURISM IN THE NORTHERN AND WESTERN CAPE NSTF DISCUSSION FORUM SCIENCE TOURISM PRESENTER: Lorenzo Raynard South African Astronomical Observatory (SAAO) National facility

More information

ABB Remote Sensing Atmospheric Emitted Radiance Interferometer AERI system overview. Applications

ABB Remote Sensing Atmospheric Emitted Radiance Interferometer AERI system overview. Applications The ABB Atmospheric Emitted Radiance Interferometer AERI provides thermodynamic profiling, trace gas detection, atmospheric cloud aerosol study, air quality monitoring, and more. AERI high level overview

More information

Pulsar Studies with the Shanghai TianMa Radio Telescope

Pulsar Studies with the Shanghai TianMa Radio Telescope Pulsar Studies with the Shanghai TianMa Radio Telescope Speaker:Zhen Yan * Shanghai Astronomical Observatory, CAS *On behalf of the Shanghai TianMa Radio Telescope Team 2017/7/12 1 Outline Introduction

More information

Ultra-Faint Radio Frequency Interference in the Murchison Widefield Array

Ultra-Faint Radio Frequency Interference in the Murchison Widefield Array Ultra-Faint Radio Frequency Interference in the Murchison Widefield Array Michael Wilensky March 2018 Abstract The mitigation of radio frequency interference (RFI) is important in precision radio astronomy

More information

Telescopes. Lecture 7 2/7/2018

Telescopes. Lecture 7 2/7/2018 Telescopes Lecture 7 2/7/2018 Tools to measure electromagnetic radiation Three essentials for making a measurement: A device to collect the radiation A method of sorting the radiation A device to detect

More information

Senior Design Proposal

Senior Design Proposal Senior Design Proposal Kathleen E Gesterling April 10, 2008 1 Introduction The following report describes the analysis for finding the speed of an extensive air shower produced by an ulta-high energy cosmic

More information

What are the five components of a GIS? A typically GIS consists of five elements: - Hardware, Software, Data, People and Procedures (Work Flows)

What are the five components of a GIS? A typically GIS consists of five elements: - Hardware, Software, Data, People and Procedures (Work Flows) LECTURE 1 - INTRODUCTION TO GIS Section I - GIS versus GPS What is a geographic information system (GIS)? GIS can be defined as a computerized application that combines an interactive map with a database

More information

Light and Telescopes

Light and Telescopes Light and Telescopes The key thing to note is that light and matter interact. This can happen in four principal ways: 1) emission a hot object such as the filament in a light bulb emits visible light 2)

More information

Radio Observation of Milky Way at MHz. Amateur Radio Astronomy Observation of the Milky Way at MHz from the Northern Hemisphere

Radio Observation of Milky Way at MHz. Amateur Radio Astronomy Observation of the Milky Way at MHz from the Northern Hemisphere Amateur Radio Astronomy Observation of the Milky Way at 1453.5MHz from the Northern Hemisphere Dr David Morgan February 2011 Introduction The measurements reported here were made in March and April 2007

More information

Astronomy A BEGINNER S GUIDE TO THE UNIVERSE EIGHTH EDITION

Astronomy A BEGINNER S GUIDE TO THE UNIVERSE EIGHTH EDITION Astronomy A BEGINNER S GUIDE TO THE UNIVERSE EIGHTH EDITION CHAPTER 3 Telescopes Lecture Presentation 3.0 Imaging the universe Our original observations of the universe depended on our eyes! What other

More information

Earth s Atmosphere & Telescopes. Atmospheric Effects

Earth s Atmosphere & Telescopes. Atmospheric Effects Earth s Atmosphere & Telescopes Whether light is absorbed by the atmosphere or not depends greatly on its wavelength. Earth s atmosphere can absorb certain wavelengths of light so much that astronomers

More information

Remote Sensing & Image-making

Remote Sensing & Image-making Remote Sensing & Image-making Physics Urvashi Rau New Mexico Tech, National Radio Astronomy Observatory, Socorro, NM, USA Instrumentation Jan 15 2009 Computing (1) What is Remote Sensing? (2) Types of

More information

Chapter 6 Telescopes: Portals of Discovery. Agenda. How does your eye form an image? Refraction. Example: Refraction at Sunset

Chapter 6 Telescopes: Portals of Discovery. Agenda. How does your eye form an image? Refraction. Example: Refraction at Sunset Chapter 6 Telescopes: Portals of Discovery Agenda Announce: Read S2 for Thursday Ch. 6 Telescopes 6.1 Eyes and Cameras: Everyday Light Sensors How does your eye form an image? Our goals for learning How

More information

Astronomy 1 Fall 2016

Astronomy 1 Fall 2016 Astronomy 1 Fall 2016 One person s perspective: Three great events stand at the threshold of the modern age and determine its character: 1) the discovery of America; 2) the Reformation; 3) the invention

More information

Introduction. Project Summary In 2014 multiple local Otsego county agencies, Otsego County Soil and Water

Introduction. Project Summary In 2014 multiple local Otsego county agencies, Otsego County Soil and Water Introduction Project Summary In 2014 multiple local Otsego county agencies, Otsego County Soil and Water Conservation District (SWCD), the Otsego County Planning Department (OPD), and the Otsego County

More information

The Phase-Modulated Logistic Map: an Exploration

The Phase-Modulated Logistic Map: an Exploration The Phase-Modulated Logistic Map: an Exploration Ryan James UC Davis rgjames@ucdavis.edu The logistic map is one of the most common examples of how chaotic dynamics can arise in simple systems. In this

More information

XR Analog Clock - Manual Setting Model Troubleshooting Guide

XR Analog Clock - Manual Setting Model Troubleshooting Guide Primex XR 72MHz Synchronized Time Solution XR Analog Clock - Manual Setting Model Troubleshooting Guide 2018 Primex. All Rights Reserved. The Primex logo is a registered trademark of Primex. All other

More information

Atmospheric Extinction

Atmospheric Extinction Atmospheric Extinction Calibrating stellar photometry requires correction for loss of light passing through the atmosphere. Atmospheric Rayleigh and aerosol scattering preferentially redirects blue light

More information

Gravitational-Wave Data Analysis: Lecture 2

Gravitational-Wave Data Analysis: Lecture 2 Gravitational-Wave Data Analysis: Lecture 2 Peter S. Shawhan Gravitational Wave Astronomy Summer School May 29, 2012 Outline for Today Matched filtering in the time domain Matched filtering in the frequency

More information

Make Your Own Radio Image Large Public Venue Edition

Make Your Own Radio Image Large Public Venue Edition Make Your Own Radio Image Large Public Venue Edition Adapted from the NRAO s Make Your Own Radio Image Background This Activity has been adapted from the NRAO s Make Your Own Radio Image. Radio telescopes

More information

Fog Monitor 100 (FM 100) Extinction Module. Operator Manual

Fog Monitor 100 (FM 100) Extinction Module. Operator Manual Particle Analysis and Display System (PADS): Fog Monitor 100 (FM 100) Extinction Module Operator Manual DOC-0217 Rev A-1 PADS 2.7.3, FM 100 Extinction Module 2.7.0 5710 Flatiron Parkway, Unit B Boulder,

More information

Light-pollution measurement with the Wide-field all-sky image analyzing monitoring system

Light-pollution measurement with the Wide-field all-sky image analyzing monitoring system Contrib. Astron. Obs. Skalnaté Pleso 47, 2 219, (20) Light-pollution measurement with the Wide-field all-sky image analyzing monitoring system S. Vítek Czech Technical University in Prague, Technická 2,

More information

How do they work? Chapter 5

How do they work? Chapter 5 Telescopes How do they work? Chapter 5 1. History 2. Lenses & Hardware 3. Reflecting Telescopes 4. Refracting Telescopes History Hans Lippershey Middleburg, Holland invented the refractor telescope in

More information

Radio Aspects of the Transient Universe

Radio Aspects of the Transient Universe Radio Aspects of the Transient Universe Time domain science: the transient sky = frontier for all λλ Less so at high energies BATSE, RXTE/ASM, Beppo/Sax, SWIFT, etc. More so for optical, radio LSST = Large

More information

Automatic Star-tracker Optimization Framework. Andrew Tennenbaum The State University of New York at Buffalo

Automatic Star-tracker Optimization Framework. Andrew Tennenbaum The State University of New York at Buffalo SSC17-VIII-6 Automatic Star-tracker Optimization Framework Andrew Tennenbaum The State University of New York at Buffalo aztennen@buffalo.edu Faculty Advisor: John Crassidis The State University of New

More information

How Dark are your Skies?

How Dark are your Skies? How Dark are your Skies? Introduction: Estimating Limiting Magnitude Limiting magnitude is used to evaluate the quality of observing conditions. You can be in the best and darkest sight, but you still

More information

Analyzing the NYC Subway Dataset

Analyzing the NYC Subway Dataset PROJECT REPORT Analyzing the NYC Subway Dataset Short Questions Overview This project consists of two parts. In Part 1 of the project, you should have completed the questions in Problem Sets 2, 3, 4, and

More information

Detection of Artificial Satellites in Images Acquired in Track Rate Mode.

Detection of Artificial Satellites in Images Acquired in Track Rate Mode. Detection of Artificial Satellites in Images Acquired in Track Rate Mode. Martin P. Lévesque Defence R&D Canada- Valcartier, 2459 Boul. Pie-XI North, Québec, QC, G3J 1X5 Canada, martin.levesque@drdc-rddc.gc.ca

More information

Astronomy. Optics and Telescopes

Astronomy. Optics and Telescopes Astronomy A. Dayle Hancock adhancock@wm.edu Small 239 Office hours: MTWR 10-11am Optics and Telescopes - Refraction, lenses and refracting telescopes - Mirrors and reflecting telescopes - Diffraction limit,

More information

Imaging the Sun with The Murchison Widefield Array

Imaging the Sun with The Murchison Widefield Array Imaging the Sun with The Murchison Widefield Array Divya Oberoi 1,2, Lynn D. Matthews 2, Leonid Benkevitch 2 and the MWA Collaboration 1 National Centre for Radio Astrophysics, Tata Institute for Fundamental

More information

Lesson Plan - Middle and High School Land Use and Land Cover Introduction. Understanding Land Use and Land Cover using ArcGIS Online

Lesson Plan - Middle and High School Land Use and Land Cover Introduction. Understanding Land Use and Land Cover using ArcGIS Online Lesson Plan - Middle and High School Land Use and Land Cover Understanding Land Use and Land Cover using ArcGIS Online Image an image is a representation of reality. It can be a sketch, a painting, a photograph,

More information

Lesson Plan - Middle and High School Land Use and Land Cover Introduction. Understanding Land Use and Land Cover using ArcGIS Online

Lesson Plan - Middle and High School Land Use and Land Cover Introduction. Understanding Land Use and Land Cover using ArcGIS Online Lesson Plan - Middle and High School Land Use and Land Cover Understanding Land Use and Land Cover using ArcGIS Online Image an image is a representation of reality. It can be a sketch, a painting, a photograph,

More information

LECTURE 18. Lecture outline Gaussian channels: parallel colored noise inter-symbol interference general case: multiple inputs and outputs

LECTURE 18. Lecture outline Gaussian channels: parallel colored noise inter-symbol interference general case: multiple inputs and outputs LECTURE 18 Last time: White Gaussian noise Bandlimited WGN Additive White Gaussian Noise (AWGN) channel Capacity of AWGN channel Application: DS-CDMA systems Spreading Coding theorem Lecture outline Gaussian

More information

arxiv: v1 [astro-ph.he] 4 Feb 2014

arxiv: v1 [astro-ph.he] 4 Feb 2014 Short-duration Radio Bursts with Apparent Extragalactic Dispersion arxiv:1402.0664v1 [astro-ph.he] 4 Feb 2014 P. Saint-Hilaire 1, A. O. Benz 2, and C. Monstein 2 Space Sciences Laboratory, University of

More information

How fast does Aquarius go around the Earth? Gary: It takes 96 minutes to make one orbit. David: I think it s 7 kilometers per second (Gary agrees.

How fast does Aquarius go around the Earth? Gary: It takes 96 minutes to make one orbit. David: I think it s 7 kilometers per second (Gary agrees. How fast does Aquarius go around the Earth? Gary: It takes 96 minutes to make one orbit. Carla: Do you have any idea fast that is in miles per hour? David: I think it s 7 kilometers per second (Gary agrees.)

More information

Narrowband Imaging, or How to Image in Downtown Portland. Duncan Kitchin OMSI Astro Imaging Conference 2010

Narrowband Imaging, or How to Image in Downtown Portland. Duncan Kitchin OMSI Astro Imaging Conference 2010 Narrowband Imaging, or How to Image in Downtown Portland Duncan Kitchin OMSI Astro Imaging Conference 2010 Agenda Sources of noise in astro images Selectively removing light pollution Narrowband filters

More information

Analyzing the Earth Using Remote Sensing

Analyzing the Earth Using Remote Sensing Analyzing the Earth Using Remote Sensing Instructors: Dr. Brian Vant- Hull: Steinman 185, 212-650- 8514 brianvh@ce.ccny.cuny.edu Ms. Hannah Aizenman: NAC 7/311, 212-650- 6295 haizenman@ccny.cuny.edu Dr.

More information

Discovery of fast radio transients at very low frequencies

Discovery of fast radio transients at very low frequencies Discovery of fast radio transients at very low frequencies Yogesh Maan National Centre for Radio Astrophysics (NCRA), Pune, INDIA June 02, 2015 Yogesh Maan (NCRA) June 02, 2015 1 / 22 Overview 1 Motivations

More information

Astronomical Tools. Optics Telescope Design Optical Telescopes Radio Telescopes Infrared Telescopes X Ray Telescopes Gamma Ray Telescopes

Astronomical Tools. Optics Telescope Design Optical Telescopes Radio Telescopes Infrared Telescopes X Ray Telescopes Gamma Ray Telescopes Astronomical Tools Optics Telescope Design Optical Telescopes Radio Telescopes Infrared Telescopes X Ray Telescopes Gamma Ray Telescopes Laws of Refraction and Reflection Law of Refraction n 1 sin θ 1

More information

Measurement method for the proficiency testing program

Measurement method for the proficiency testing program APLAC T088 Appendix Measurement method for the proficiency testing program Introductions This measurement method is prepared for use by the APLAC Proficiency Testing Program Photometric measurement of

More information

Foundations of Astronomy 13e Seeds. Chapter 6. Light and Telescopes

Foundations of Astronomy 13e Seeds. Chapter 6. Light and Telescopes Foundations of Astronomy 13e Seeds Chapter 6 Light and Telescopes Guidepost In this chapter, you will consider the techniques astronomers use to study the Universe What is light? How do telescopes work?

More information

1 Introduction: 2 Data Processing:

1 Introduction: 2 Data Processing: Darren Janzen University of Northern British Columbia Student Number 230001222 Major: Forestry Minor: GIS/Remote Sensing Produced for: Geography 413 (Advanced GIS) Fall Semester Creation Date: November

More information

The IRS Flats. Spitzer Science Center

The IRS Flats. Spitzer Science Center Spitzer Science Center Table of Contents The IRS Flats 1 Chapter 1. The Purpose of this Document... 3 Chapter 2.... 4 2.1 Make a finely-spaced map of a star....4 2.2 Simulate an extended source...6 2.3

More information

ASTR 2310: Chapter 6

ASTR 2310: Chapter 6 ASTR 231: Chapter 6 Astronomical Detection of Light The Telescope as a Camera Refraction and Reflection Telescopes Quality of Images Astronomical Instruments and Detectors Observations and Photon Counting

More information

Period Analysis on a Spreadsheet

Period Analysis on a Spreadsheet Aliases in Depth An alias for a period is another period where the data seemingly fits as well, or nearly so, as the correct period. The most common encounter with aliasing is when you observe a target

More information

Lab 5. Parallax Measurements and Determining Distances. 5.1 Overview

Lab 5. Parallax Measurements and Determining Distances. 5.1 Overview Lab 5 Parallax Measurements and Determining Distances 5.1 Overview Exercise five centers on a hands-on activity where students perform their own parallax measurements, measuring angular shifts in nearby

More information

Spectral Analysis of High Resolution X-ray Binary Data

Spectral Analysis of High Resolution X-ray Binary Data Spectral Analysis of High Resolution X-ray Binary Data Michael Nowak, mnowak@space.mit.edu X-ray Astronomy School; Aug. 1-5, 2011 Introduction This exercise takes a look at X-ray binary observations using

More information

NCS. New Control System for the 30m Telescope. TBD. 2005

NCS. New Control System for the 30m Telescope. TBD. 2005 Title: NCS. New Control System for the 30m Telescope. TBD. 2005 Identifier - Master URL: http://www.iram.es/irames/documents/ncs30mtbdsummer2005 Revision: ncs30mtbdsummer2005, v1.5 Date: 2005-10-06 Expiration

More information

Radio Astronomy and Amateur Radio. Glenn MacDonell VE3XRA 3 August 2010

Radio Astronomy and Amateur Radio. Glenn MacDonell VE3XRA 3 August 2010 Radio Astronomy and Amateur Radio Glenn MacDonell VE3XRA 3 August 2010 Radio Astronomy The study of objects in the sky using radio frequencies Very young field History of Radio Astronomy Basic work on

More information

Useful Formulas and Values

Useful Formulas and Values Name Test 1 Planetary and Stellar Astronomy 2017 (Last, First) The exam has 20 multiple choice questions (3 points each) and 8 short answer questions (5 points each). This is a closed-book, closed-notes

More information

RFI Identification and Automatic Flagging

RFI Identification and Automatic Flagging RFI Identification and Automatic Flagging 1388MHz Momjian Urvashi Rau & Emmanuel 1756 MHz NRAO VLA Data Reduction Workshop 27 31 October 2014 1 Outline RFI at the VLA + Online Flags Automatic Flagging

More information

Light The EM Spectrum

Light The EM Spectrum Light The EM Spectrum 1 Spectrum of Electromagnetic Radiation Region Wavelength (Angstroms) Wavelength (centimeters) Frequency (Hz) Energy (ev) Radio > 10 9 > 10 < 3 x 10 9 < 10-5 Microwave 10 9-10 6 10-0.01

More information