Computerization of a telescope at secondary education

Size: px
Start display at page:

Download "Computerization of a telescope at secondary education"

Transcription

1 Highlights on Spanish Astrophysics IX, Proceedings of the XII Scientific Meeting of the Spanish Astronomical Society held on July 18 22, 2016, in Bilbao, Spain. S. Arribas, A. Alonso-Herrero, F. Figueras, C. Hernández-Monteagudo, A. Sánchez-Lavega, S. Pérez-Hoyos (eds.) Computerization of a telescope at secondary education Alfonso García Santiago and José Martos Jumillas I.E.S Iulia Salaria SABIOTE (Jaén) Abstract The work we are presenting in this paper is the computerization of a refractor telescope on an EQ3 type equatorial mount through Arduino. The control of the mount is done via three different interfaces: Stellarium, an Android interface for mobile phones and a second interface for PC made with Processing. The aforementioned work was done by the authors with a double purpose: presenting the interest in astronomy in the Mathematics department, and the development of applications within the subject of Technology in 4th ESO. So, it is a collaborative project between both departments. Except for the telescope and the mount, all the resources we have used can be found in any high school: free software (Guadalinex v9), App Inventor and Processing.The project was carried out under the principle of reducing all possible costs given the economic possibilities of the institution. 1 Introduction What we are presenting here is the result of the work previous to the didactic units we are going to elaborate for our students. We think we should get them involved with the world of programming as soon as possible, and we can do it now, in 4th ESO. Since 2000, IES Iulia Salaria has got a 120mm aperture, 1m focal refractor telescope made in China with a German equatorial mount with stepper motors in both axes. To control it, it has got a handbox that drives the motors in both directions, with the option of doing it at different speeds and with the sidereal movement that enables star tracking. This sidereal movement is not adjustable, and this can be a problem for the long term exposition photographs of the Moon, the Sun and the planets. Since that year, there has been an astronomy group with the students in the school with some continuity.the stepper motors are the mount original ones. They are in perfect condition. We have noticed that there is a gap between the motors and the gears so that when the direction of rotation is changed, the 721

2 722 Computerization of a telescope at E.S.O motor must travel an angle before dragging the gears. This presents a significant error in the accuracy of the device that we have already quantified but not corrected. Computer programming has always been within the specialized science margins. The use of low-level, high-performance languages such as Fortran 77 and C was the result of a calculation needs that, outside those circles, made no sense. Now, the popularity of mobile phones (in which audiovisual aspects, games, etc, come into play) and the need to control these devices make programming appealing to other sectors of the population. MIT created a very intuitive application, App Inventor 1, which brings programming on Android closer to sectors of the population, such as children, very far from the initial programming circles. To make a program for mobile phones that allows to communicate with Arduino 2 via bluetooth is within any high school student s reach. We have made a model of the program that simulates the handbox of the mount but with more features. Stellarium is an astronomical open source program that comes within the Guadalinex GNU/Linux distribution of the Junta de Andalucía for the Andalusian schools. Both professionals and amateurs agree on its excellence: one of the best and most complete astronomy softwares. Maybe, the most popular of all. Stellarium can control telescopes with computerized mounts in the Meade LX200 range. To do this, it has got some specific commands of this protocol already implemented. However, unlike other software of the same type as Carte du Ciel, the interface to control the telescope does not allow fine adjustments or to establish non-sidereal movements. For the needs of the amateur astronomer, it is insufficient. It is useful only for a slew, i.e. to indicate a target star and, from its current position, move the motors looking for the direction of the star. Arduino is managed through programs written in C. It is not that students learn C away from the needs posed by specific projects, but the other way around, i.e. they are started on the principles of that language through the projects. The amount of available libraries facilitates this task. However, we know that programming implemented in Arduino to control the two motors of the mount are beyond the capabilities of high school students, although parts of it are not. We used the shield for Arduino, which provides an intensity close to 1 A, the intensity required for the operation of both motors simultaneously. We used a Mega plate for the simple reason that it has the free ports required to connect the bluetooth. When the motors shield is connected to Arduino Uno, port connections are covered by the shield. We found the germ of our work on the Internet. It was developed by David Vidal under the name ArduGoto, a program for Arduino which connects to Stellarium and drives the motors of the mount. This program has serious shortcomings that make it practically useless. We have corrected the mistakes and we have also expanded the program including the possibility of being governed from a mobile phone via bluetooth and from a PC. It is troublesome to use Stellarium only to control it given the extremely austere and not very versatile interface that it has. The interfaces we have made for both Android and PC suplement all those deficiencies. 1 [Accessed Jun. 2016]. 2 [Accessed Jun. 2016].

3 García Santiago & José Martos Jumillas 723 The bluetooth used is HC-05, which can be purchased for about 5 euros. Finally, we point out that the students in 4th ESO work through projects in the subject of Technology. With the project we are presenting now, as noted above, it is intended to introduce students to programming in C as necessary for both Arduino and Processing 3, and Android mobile programming carried out with App Inventor. 2 Development Confronting our project requires some previous knowledge of astronomy and technology by our students. As it was mentioned before, it is developed in 4th ESO, but we start in 3rd ESO. In this course, the geographical coordinates are studied. It is the right time to move to the equatorial astronomical coordinates so that they know how to place a star in a planisphere. It may also be interesting to get them started in the apparent motion of the celestial orb without taking into account the motion of the planets and the Sun. Stellarium can be then especially useful by introducing different speeds over time and observing several areas of the sky. Although observations are made in 3rd ESO, it is in 4th when the equatorial mount has to be presented, paying special attention to the fact that the tracking of a star can be done with a constant speed of a motor, that of Right Ascension, when dealing with this type of mounts. Tracking, therefore, is to set the proper speed of that motor. It is also important to notice the importance of starting monitoring station to be accurate. With a bad start telescope setup, it is impossible. During the observation, the types of telescopes and parts of a refractor (like the one the high school has) would also be explained. Regarding the previous knowledge students must have on Arduino, Processing and App Inventor, they will get it from the area of Technology. After a simple explanation about connection to the PC and load of programs, the student must face a simple program like lighting a led with Arduino via the serial port as well as from the bluetooth already programmed in App Inventor. The experience of several years of our students with App Inventor shows that they acquire programming skills easily in that environment. We think it is because the program offers the immediacy of results by changing the different variables that come into play in the program. 3 Results In this link ( you can download a zip file containing: Program ardueq3.ino, which is the file you must upload to the Arduino plate Program ardueq3movil.apk, which is the application you must upload to your mobile and that will provide a handbox for the telescope. 3 [Accessed Jun. 2016].

4 724 Computerization of a telescope at E.S.O Program ardueq3pc.pde, which is the text file for Processing if you want to make changes. ardueq3pc (the previous file compiled for Linux and Windows for both 32 and 64 bits). Use and installation manual. The program ardueq3.ino has its germ, as noted earlier, in ArduGoto, but it has been corrected and extended. The sentences for the connection and interpretation of commands via the serial port and bluetooth are connected on it. For the latter, we have designed it so that a single character could be read through the port, what is much simpler than commands LX200, in which you have to collect them in an array where a character is stored in each cell. You will have to download the AFmotor library from the web. It is necessary for the operation. To install the application ardueq3movil.apk, we copied it first on the mobile phone Download folder. It is optimized for 4,3-inch screens, so there will be no problems for larger screens. Complete information about it can be found in the manual. Similarly for ardueq3pc. Once tested, the operation is more than satisfactory, although we have found some drawbacks. The first one is that once the target position has been indicated via Stellarium, there is a difference between the position finally adopted by the telescope and the requested one. The difference is not only due to the periodic error, but to a gap in the gears that is evident especially when the direction of the rotation is changed. This was already mentioned before. Fortunately, with the help of the mobile s interface or the PC s, we can adjust the telescope to the desired position. The speed adjustment is important. The second drawback is that some mobile phone batteries do not support long observation time. We also had to adjust the brightness of the mobile phone screen to a minimum to help the eye dark adaptation when going back to ocular mode. The design of the interfaces has been quite simple. We had not raised the possibility of programming complicated interfaces, in the sense that they had visual effects, for example, when pressing the keys. We should not forget that the goal is to introduce students to programming. Since the Arduino plate supports a wifi shield plate and the high school is equipped with a Celestron NexImage camera, we can view the ocular images and control the telescope from a remote computer. The images are collected and sent through the VLC program, which allows streaming and is also free software. It is the simulation of a large observatory operation made for and by high school students. The cost of computerization has been minimal: it is less than 30 euros.

5 García Santiago & José Martos Jumillas 725 (a) arduino and shield (b) ardueq3movil (c) stellarium and ardueq3pc

SimpleDreamEQ2. Upgrade kit equatorial mounts Synta EQ2, Celestron CG3. User guide. Micro GoTo system. Micro GoTo system

SimpleDreamEQ2. Upgrade kit equatorial mounts Synta EQ2, Celestron CG3. User guide. Micro GoTo system. Micro GoTo system SimpleDreamEQ2 Upgrade kit equatorial mounts Synta EQ2, Celestron CG3 User guide Micro GoTo system Micro GoTo system AstroGadget 2017 1. DESCRIPTION The kit consists of a control unit and a set of drives

More information

An Adaptive Autoguider using a Starlight Xpress SX Camera S. B. Foulkes, Westward, Ashperton, Nr. Ledbury, HR8 2RY. Abstract

An Adaptive Autoguider using a Starlight Xpress SX Camera S. B. Foulkes, Westward, Ashperton, Nr. Ledbury, HR8 2RY. Abstract An Adaptive Autoguider using a Starlight Xpress SX Camera S. B. Foulkes, Westward, Ashperton, Nr. Ledbury, HR8 2RY. Abstract The acquisition of very faint deep sky objects, be it analog with film or digital

More information

INTRODUCTION TO THE TELESCOPE

INTRODUCTION TO THE TELESCOPE AST 113/114 Fall 2014 / Spring 2016 NAME: INTRODUCTION TO THE TELESCOPE What will you learn in this Lab? For a few of the labs this semester, you will be using an 8-inch Celestron telescope to take observations.

More information

Introduction to Telescopes Pre-lab

Introduction to Telescopes Pre-lab AST 114 Spring 2005 Introduction to Telescopes Introduction to Telescopes Pre-lab 1. Read through the "Parts of a Telescope" section of the lab. You may be asked to point out the different parts of the

More information

Telescopen > Catadioptrisch Spiegel /lens > Celestron > Celestron NexStar Evolution > Celestron NexStar Evolution 6 inch (15 cm) Robtics

Telescopen > Catadioptrisch Spiegel /lens > Celestron > Celestron NexStar Evolution > Celestron NexStar Evolution 6 inch (15 cm) Robtics Model: - Artikel: Fabrikant: Celestron» Control your telescope wirelessly from your ios or Android smartphone or tablet with the free CELESTRON Celestron mobile NEXSTAR app with EVOLUTION planetarium interface

More information

Telescopen > Catadioptrisch Spiegel /lens > Celestron > Celestron NexStar Evolution > Celestron NexStar Evolution 9.25 (23,5 cm) Robtics

Telescopen > Catadioptrisch Spiegel /lens > Celestron > Celestron NexStar Evolution > Celestron NexStar Evolution 9.25 (23,5 cm) Robtics Celestron NexStar Model: - Artikel: Celestron NexStar Fabrikant: Celestron Celestron NexStar Celestron's signature telescopes reach a new level with NexStar Evolution 9.25, the first Schmidt-Cassegrain

More information

DobsonDream. Push-TO DSC controller User guide

DobsonDream. Push-TO DSC controller User guide DobsonDream Push-TO DSC controller User guide Astro-Gadget.com 2017 1. APPOINTMENT AND OPPORTUNITIES DobsonDream is a DSC controller (digital telescope guidance circles). It helps observers to accurately

More information

Telescopes come in three basic styles

Telescopes come in three basic styles Telescopes come in three basic styles Refracting telescopes use lenses Refractors are either achromatic (some color distortion) or apochromatic (very little if any color distortion). Apo refractors use

More information

Amplification (or not) of Light Pollution due to the presence of clouds

Amplification (or not) of Light Pollution due to the presence of clouds Highlights on Spanish Astrophysics IX, Proceedings of the XII Scientific Meeting of the Spanish Astronomical Society held on July 18 22, 2016, in Bilbao, Spain. S. Arribas, A. Alonso-Herrero, F. Figueras,

More information

Telescope Fundamentals

Telescope Fundamentals Telescope Fundamentals The focus of this presentation is to provide an overview of popular equipment available to the amateur astronomy community, as well as the equipment s applicability to differing

More information

INTRODUCTION TO THE TELESCOPE

INTRODUCTION TO THE TELESCOPE INTRODUCTION TO THE TELESCOPE What will you learn in this Lab? For a few of the labs this semester, you will be using an 8-inch Celestron telescope to take observations. This lab will introduce you to

More information

Instructions Manual Zoomion Apollo 80

Instructions Manual Zoomion Apollo 80 Instructions Manual Zoomion Apollo 80 English version 7.2015 Rev A 1 The Zoomion Apollo 80 Figure 1. Parts description. Congratulations on the purchase of the new Zoomion Apollo 80. This telescope will

More information

Astronomy 101 Lab: Stellarium Tutorial

Astronomy 101 Lab: Stellarium Tutorial Name: Astronomy 101 Lab: Stellarium Tutorial Please install the Stellarium software on your computer using the instructions in the procedure. If you own a laptop, please bring it to class. You will submit

More information

Light and Optics. Light and Optics. Author: Sarah Roberts

Light and Optics. Light and Optics. Author: Sarah Roberts Activity Instructions Author: Sarah Roberts - Faulkes Telescope Project Activity Instructions Introduction In this activity, you will either search the image archive on the Faulkes Telescope Project website

More information

in the Mediterranean

in the Mediterranean PIRATE in the Mediterranean Ulrich Kolb 1, Robert Lucas 1, Vadim Burwitz 2 (1) picetl & OU Physics & Astronomy (2) MPE Garching PIRATE The picetlrobotic Astronomical Telescope Explorer Ulrich Kolb, Robert

More information

Stellarium Walk-through for First Time Users

Stellarium Walk-through for First Time Users Stellarium Walk-through for First Time Users Stellarium is the computer program often demonstrated during our planetarium shows at The MOST, Syracuse s science museum. It is our hope that visitors to our

More information

Astronomy 102 Lab: Stellar Parallax and Proper Motion

Astronomy 102 Lab: Stellar Parallax and Proper Motion Name: Astronomy 102 Lab: Stellar Parallax and Proper Motion If you own a laptop, please bring it to class. You will use Stellarium again. The Stellarium shortcuts you used in the first lab are on the inside

More information

Students will explore Stellarium, an open-source planetarium and astronomical visualization software.

Students will explore Stellarium, an open-source planetarium and astronomical visualization software. page 22 STELLARIUM* OBJECTIVE: Students will explore, an open-source planetarium and astronomical visualization software. BACKGROUND & ACKNOWLEDGEMENTS This lab was generously provided by the Red Rocks

More information

Getting Started: Using An Equatorial Telescope Mount: Everything You Need To Know For Astrophotography Or Visual Use By Allan Hall

Getting Started: Using An Equatorial Telescope Mount: Everything You Need To Know For Astrophotography Or Visual Use By Allan Hall Getting Started: Using An Equatorial Telescope Mount: Everything You Need To Know For Astrophotography Or Visual Use By Allan Hall tal cameras have been used for astrophotography of fairly bright objects.

More information

GCSE Astronomy Coursework

GCSE Astronomy Coursework GCSE Astronomy Coursework B12 Measuring the Sidereal Day Take long-exposure photographs of the circumpolar stars around Polaris or the south celestial pole and use them to determine the length of the sidereal

More information

Contents 1 Introduction

Contents 1 Introduction Contents 1 Introduction... 1 Computers and Astronomy... 1 Look Before You Leap!... 1 Advancing from Binoculars... 2 Telescope Types... 3 Small Refractors... 3 Refractor Accessories... 4 Reflectors... 6

More information

Using Nexus-II with Deep Sky Browser, SkySafari and SiTech motor controller

Using Nexus-II with Deep Sky Browser, SkySafari and SiTech motor controller Using Nexus-II with Deep Sky Browser, SkySafari and SiTech motor controller This note describes how to setup your Nexus-II with your iphone/ipad/ipod touch for use with Deep Sky Browser, SkySafari and

More information

Assignment #0 Using Stellarium

Assignment #0 Using Stellarium Name: Class: Date: Assignment #0 Using Stellarium The purpose of this exercise is to familiarize yourself with the Stellarium program and its many capabilities and features. Stellarium is a visually beautiful

More information

ADAS Guide to choosing the right Telescope. Produced by Members of the Society, Nov 2017

ADAS Guide to choosing the right Telescope. Produced by Members of the Society, Nov 2017 ADAS Guide to choosing the right Telescope Produced by Members of the Society, Nov 2017 Choosing a Telescope Telescope Types Telescope Features Visual or Astrophotography use? Telescope Package or Separate

More information

D = telescope aperture h = wavelength of light being observed D and h must be in the same units.

D = telescope aperture h = wavelength of light being observed D and h must be in the same units. the diameter or aperture. Because stars are extremely far away, they appear as point sources of light even with a telescope. Their brightness in the telescope depends only on the size of the aperture.

More information

The Kyiv internet telescope project

The Kyiv internet telescope project Second Workshop on Robotic Autonomous Observatories ASI Conference Series, 2012, Vol. 7, pp 297 302 Edited by Sergey Guziy, Shashi B. Pandey, Juan C. Tello & Alberto J. Castro-Tirado The Kyiv internet

More information

Digital Land Surveying And Mapping(DLS&M) Dr. Jayanta Kumar Ghosh Department of Civil Engineering Indian Institute of Technology, Roorkee

Digital Land Surveying And Mapping(DLS&M) Dr. Jayanta Kumar Ghosh Department of Civil Engineering Indian Institute of Technology, Roorkee Digital Land Surveying And Mapping(DLS&M) Dr. Jayanta Kumar Ghosh Department of Civil Engineering Indian Institute of Technology, Roorkee Lecture - 17 Total Station Introduction Welcome students, this

More information

Imaging with the 70AT and the Meade electronic eyepiece CCD imager By Ted Wilbur 2/4/02

Imaging with the 70AT and the Meade electronic eyepiece CCD imager By Ted Wilbur 2/4/02 Imaging with the 70AT and the Meade electronic eyepiece CCD imager By Ted Wilbur 2/4/02 Background: Follow-up 3/10/02: Process improvements and comments in red - TW I took up the hobby of astronomy in

More information

THE ATIS INSTRUCTION SET FOR COMMUNICATION WITH ROBOTIC ASTRONOMICAL TELESCOPES

THE ATIS INSTRUCTION SET FOR COMMUNICATION WITH ROBOTIC ASTRONOMICAL TELESCOPES THE ATIS INSTRUCTION SET FOR COMMUNICATION WITH ROBOTIC ASTRONOMICAL TELESCOPES Item Type text; Proceedings Authors Seeds, Michael A. Publisher International Foundation for Telemetering Journal International

More information

TEACHING OBSERVATIONAL METHODS IN ASTROPHYSICS: REMOTE OBSERVATIONS FROM THE SCHOOL

TEACHING OBSERVATIONAL METHODS IN ASTROPHYSICS: REMOTE OBSERVATIONS FROM THE SCHOOL TEACHING OBSERVATIONAL METHODS IN ASTROPHYSICS: REMOTE OBSERVATIONS FROM THE SCHOOL Paolo Santin, INAF - Astronomical Observatory of Trieste, Trieste, Italy Abstract The traditional way of teaching Astrophysics

More information

Instruction Manual 1

Instruction Manual 1 Instruction Manual 1 Dobson 76/300 DOB English version 8.2014 Rev A The Omegon 76/300 DOB Congratulations on the purchase of the new Omegon 76/3006 DOB. This small telescope will give you hours of fun,

More information

SOFT 423: Software Requirements

SOFT 423: Software Requirements SOFT 423: Software Requirements Week 11 Class 1 Telescope Example End-to-End SOFT 423 Winter 2015 1 Last Class CRUDO Activity Diagrams SOFT 423 Winter 2015 2 This Class Telescope System Example We won

More information

Celestron 76mm Newtonian Telescope 700mm Fl

Celestron 76mm Newtonian Telescope 700mm Fl Celestron 76mm Newtonian Telescope 700mm Fl Manual Celestron - AstroMaster LT 76AZ Newtonian Reflector Telescope - Silver. 76mm diameter, 11-180x magnification, 700mm focal length, f/9.21 focal ratio.

More information

Telescopes Refractors Reflectors Catadioptrics

Telescopes Refractors Reflectors Catadioptrics Optical Aberrations As indicated by the history of telescopes, limits of design were encountered as the instrument was developed. Here are diagrams to better explain each aberration: Telescopes Refractors

More information

Nexus DSC firmware/catalogues releases

Nexus DSC firmware/catalogues releases Nexus DSC firmware/catalogues releases 1.2.1 released 5 th of November 2018 Firmware date: 2018.11.05 Implemented a new tracking method with AstroLock that can be tuned in Settings->AstroLock Added an

More information

Mounts and Coordinate Systems

Mounts and Coordinate Systems Mounts and Coordinate Systems Part 3: Some Advanced Techniques For Mounts Last month we looked at the basic mount types and methods for aligning them. This month s article, and the last for this series

More information

Open Cluster Photometry: Part II

Open Cluster Photometry: Part II Project 4 Open Cluster Photometry: Part II Observational Astronomy ASTR 310 Fall 2005 1 Introduction The objective of this and the previous project is to learn how to produce color-magnitude diagrams of

More information

UNIWERSAŁ observatory dome

UNIWERSAŁ observatory dome -see the best with us- UNIWERSAŁ observatory dome sofware manual UNIWERSAŁ the oldest and best known manufacturer of top-quality astronomy and optical equipment in Poland System requirements : - windows

More information

PROGRESS REPORT FOR THE CANADIAN AUTOMATED SMALL TELESCOPE FOR ORBITAL RESEARCH (CASTOR) SATELLITE TRACKING FACILITY

PROGRESS REPORT FOR THE CANADIAN AUTOMATED SMALL TELESCOPE FOR ORBITAL RESEARCH (CASTOR) SATELLITE TRACKING FACILITY PROGRESS REPORT FOR THE CANADIAN AUTOMATED SMALL TELESCOPE FOR ORBITAL RESEARCH (CASTOR) SATELLITE TRACKING FACILITY Mr. Michael A. Earl and Dr. Thomas J. Racey: The Space Surveillance Research and Analysis

More information

SkyCruiser. SkyCruiser for Android

SkyCruiser. SkyCruiser for Android SkyCruiser General Description SkyCruiser is software running under the Android operating system, developed for the purpose of controlling telescopes wirelessly employing Bluetooth and GPS. After mount

More information

Operating the Celestron 14 Telescope

Operating the Celestron 14 Telescope Operating the Celestron 14 Telescope 1. The Telescope and Its Controls The Celestron 14-inch telescope is located in the east bay of the observatory (Fig. 1). It is a Schmidt-Cassegrain type instrument;

More information

Large Telescopes, Including The 200-Inch Reflector. Offprint Of Lecture To The Royal Institution, Dec. 11, By Harold Spencer.

Large Telescopes, Including The 200-Inch Reflector. Offprint Of Lecture To The Royal Institution, Dec. 11, By Harold Spencer. Large Telescopes, Including The 200-Inch Reflector. Offprint Of Lecture To The Royal Institution, Dec. 11, 1936. By Harold Spencer. JONES READ ONLINE Meade LX200-ACF 10-Inch The LX200-ACF includes all

More information

Student s guide CESAR Science Case Rotation period of the Sun and the sunspot activity

Student s guide CESAR Science Case Rotation period of the Sun and the sunspot activity Student s guide CESAR Science Case Rotation period of the Sun and the sunspot activity Name Date Introduction As you may know, the Sun is a luminous globe among many, consisting of hot gas that provides

More information

The Hertzsprung-Russell Diagram

The Hertzsprung-Russell Diagram Introduction + Aims Installing the Software Theory of Hertzsprung-Russell Diagrams Method: Part 1 - Distance to the Star Cluster Part 2 - Age of the Star Cluster Part 3 - Comparison of Star Clusters Extension

More information

The CSC Interface to Sky in Google Earth

The CSC Interface to Sky in Google Earth The CSC Interface to Sky in Google Earth CSC Threads The CSC Interface to Sky in Google Earth 1 Table of Contents The CSC Interface to Sky in Google Earth - CSC Introduction How to access CSC data with

More information

Capturing and Processing Deep Space Images. Petros Pissias Eumetsat Astronomy Club 15/03/2018

Capturing and Processing Deep Space Images. Petros Pissias Eumetsat Astronomy Club 15/03/2018 Capturing and Processing Deep Space Images Petros Pissias Eumetsat Astronomy Club 15/03/2018 Agenda Introduction Basic Equipment Preparation Acquisition Processing Quick demo Petros Pissias Eumetsat Astronomy

More information

Photoelectric Photometry of the Pleiades Student Manual

Photoelectric Photometry of the Pleiades Student Manual Name: Lab Partner: Photoelectric Photometry of the Pleiades Student Manual A Manual to Accompany Software for the Introductory Astronomy Lab Exercise Edited by Lucy Kulbago, John Carroll University 11/24/2008

More information

How to buy a telescope for your institution

How to buy a telescope for your institution How to buy a telescope for your institution by Dr. Frank Melsheimer DFM Engineering, Inc. 1035 Delaware Avenue, Unit D Longmont, Colorado 80501 phone 303-678-8143 fax 303-772-9411 www.dfmengineering.com

More information

Lab 1 Uniform Motion - Graphing and Analyzing Motion

Lab 1 Uniform Motion - Graphing and Analyzing Motion Lab 1 Uniform Motion - Graphing and Analyzing Motion Objectives: < To observe the distance-time relation for motion at constant velocity. < To make a straight line fit to the distance-time data. < To interpret

More information

AstroBITS: Open Cluster Project

AstroBITS: Open Cluster Project AstroBITS: Open Cluster Project I. Introduction The observational data that astronomers have gathered over many years indicate that all stars form in clusters. In a cloud of hydrogen gas, laced with helium

More information

INTERNATIONAL. Member Observatory. The Boquete Optical SETI Observatory. (11/5/15)

INTERNATIONAL. Member Observatory. The Boquete Optical SETI Observatory. (11/5/15) INTERNATIONAL Member Observatory The Boquete Optical SETI Observatory. (11/5/15) Boquete, Panama is located about 25 miles south of the Panama/Costa Rica Border on the slopes of Vulcan Baru, the tallest

More information

» The observatory will be located uphill and north of the Reuter Center at the end of UNC Asheville s road-to-nowhere (Nut Hill Road).

» The observatory will be located uphill and north of the Reuter Center at the end of UNC Asheville s road-to-nowhere (Nut Hill Road). » The observatory will be located uphill and north of the Reuter Center at the end of UNC Asheville s road-to-nowhere (Nut Hill Road). UNC-Asheville Campus » With some tree removal, this location is a

More information

Quick Start Guide. The ieq45 GoTo German Equatorial Mount # 8000C

Quick Start Guide. The ieq45 GoTo German Equatorial Mount # 8000C Quick Start Guide The ieq45 GoTo German Equatorial Mount # 8000C PACKAGE CONTENTS Telescope Mount (with built-in GPS) 3.5 Vixen type dovetail saddle (installed on the mount) 8 Losmandy-D type dovetail

More information

View Through a Telescope Classroom Activity

View Through a Telescope Classroom Activity View Through a Telescope Classroom Activity The Classroom Activity introduces students to the context of a performance task, so they are not disadvantaged in demonstrating the skills the task intends to

More information

How I made a phased light curve...

How I made a phased light curve... How I made a phased light curve... Student: Dawid Białka, age 16, Gymnasium School in Nowy Wiśnicz, Poland (dawid.bialka@gmail.com) Tutor: Grzegorz Sęk, Youth Astronomical Observatory, Niepolomice (gsek@moa.edu.pl)

More information

Polar alignment in 5 steps based on the Sánchez Valente method

Polar alignment in 5 steps based on the Sánchez Valente method 1 Polar alignment in 5 steps based on the Sánchez Valente method Compared to the drift alignment method, this one, allows you to easily achieve a perfect polar alignment in just one step. By "perfect polar

More information

Calibration Routine. Store in HDD. Switch "Program Control" Ref 1/ Ref 2 Manual Automatic

Calibration Routine. Store in HDD. Switch Program Control Ref 1/ Ref 2 Manual Automatic 4.2 IMPLEMENTATION LABVIEW 4.2.1 LabVIEW features LabVIEW (short for Laboratory Virtual Instrument Engineering Workbench) originally released for the Apple Macintosh in 1986. It is a highly productive

More information

10 - Celestron Telescope II: Operation

10 - Celestron Telescope II: Operation 10 - Celestron Telescope II: Operation Purpose: Gain more experience setting up a 6 Celestron telescope, familiarize yourself with the software interface, and acquire an image with the CCD camera. Due:

More information

A Unique Approach to Telescope Control

A Unique Approach to Telescope Control A Unique Approach to Telescope Control Brandt M. Westing The University of Texas at Austin, Electrical Engineering Dept., Austin, TX 78705 westing@ece.utexas.edu Abstract A new Graphical User Interface

More information

The Two Time Pad Encryption System

The Two Time Pad Encryption System Hardware Random Number Generators This document describe the use and function of a one-time-pad style encryption system for field and educational use. You may download sheets free from www.randomserver.dyndns.org/client/random.php

More information

Starry Night Version 5.7 Features What s new and how to use them!

Starry Night Version 5.7 Features What s new and how to use them! Starry Night Version 5.7 Features What s new and how to use them! New Features Overview 1. Space Missions (Probe Paths) 2. 3-D Object Models 3. Advanced Telescope Control panel 4. Google Maps Integration

More information

Observing Sessions and Lab Activity Reports

Observing Sessions and Lab Activity Reports Coconino Community College Astronomy - PHY180 Observing Sessions and Lab Activity Reports The types of activities in this Astronomy program are divided into two groups: 5 Observing Sessions, and 7 Lab

More information

Michaela Logue Dr. Michael Castelaz PARI July 25, Polaris Monitoring Project

Michaela Logue Dr. Michael Castelaz PARI July 25, Polaris Monitoring Project Michaela Logue Dr. Michael Castelaz PARI July 25, 2003 Polaris Monitoring Project Polaris, the brightest star of the constellation Ursa Minoris is located at the tip of the handle of the Little Dipper.

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

THE SKY. Sc. Sec. di primo grado M. Codermatz - Trieste August, 2008

THE SKY. Sc. Sec. di primo grado M. Codermatz - Trieste August, 2008 THE SKY G. Iafrate (a), M. Ramella (a) and V. Bologna (b) (a) INAF - Astronomical Observatory of Trieste (b) Istituto Comprensivo S. Giovanni Sc. Sec. di primo grado M. Codermatz - Trieste August, 2008

More information

Telescopen > Catadioptrisch Spiegel /lens > Meade > Meade LX200 ACF > Meade LX200ACF 40cm 16 inch F10 inc statief. Robtics

Telescopen > Catadioptrisch Spiegel /lens > Meade > Meade LX200 ACF > Meade LX200ACF 40cm 16 inch F10 inc statief. Robtics Model: MEA_128250 Artikel: Fabrikant: Meade The massive, observatory class 16" LX200-ACF has 16â diameter f/10 ACF optics (focal length 4064mm) and Ultra-High Transmission Coatings (UHTC) for maximum image

More information

Guide to Polar Alignment of a Meade LX200GPS Telescope

Guide to Polar Alignment of a Meade LX200GPS Telescope Guide to Polar Alignment of a Meade By Dale A. Chamberlain dale@dchamberlain.net April 18, 2006 Page 1 of 11 1 Why Polar Align? After making an investment in a telescope such as the Meade LX200GPS, you

More information

Observational Astronomy (PHYS-380) Fall 2008 Course Information

Observational Astronomy (PHYS-380) Fall 2008 Course Information Observational Astronomy (PHYS-380) Fall 2008 Course Information Observational astronomy has come a long way since the time of the Babylonians, 2000 BCE, mostly due to advancements in equipment. However,

More information

3/7/2018. Light and Telescope. PHYS 1411 Introduction to Astronomy. Topics for Today s class. What is a Telescopes?

3/7/2018. Light and Telescope. PHYS 1411 Introduction to Astronomy. Topics for Today s class. What is a Telescopes? PHYS 1411 Introduction to Astronomy Light and Telescope Chapter 6 Topics for Today s class Optical Telescopes Big Telescopes Advances in Telescope Designs Telescopes Mountings Problems with Mirrors and

More information

arxiv:astro-ph/ v1 21 Sep 2001

arxiv:astro-ph/ v1 21 Sep 2001 Hands-On Universe: A Global Program for Education and Public Outreach in Astronomy arxiv:astro-ph/0109372v1 21 Sep 2001 Michel Boër, C. Thiébaut Centre d Etude Spatiale des Rayonnements (CESR/CNRS), BP

More information

C A S S I N I. MODEL : C EQ3 900mm X 135mm COSMO BRANDS INC.

C A S S I N I. MODEL : C EQ3 900mm X 135mm COSMO BRANDS INC. C A S S I N I MODEL : C-900135EQ3 900mm X 135mm COSMO BRANDS INC. WWW.COSMOSOPTICS.COM 2 C A S S I N I C-900135EQ3 TELESCOPE OPERATING INSTRUCTIONS INTRODUCTION CONGRATULATIONS ON YOUR PURCHASE OF THE

More information

C2A for Pulsar2 how to control your telescope from C2A

C2A for Pulsar2 how to control your telescope from C2A C2A for Pulsar2 how to control your telescope from C2A C2a is a free and powerful planetarium program available from.http://www.astrosurf.com/c2a/english/ that offers native support for Pulsar2 without

More information

Ursa Minor Pro Planetarium en montering/dslr aansturing software

Ursa Minor Pro Planetarium en montering/dslr aansturing software > Model: - Artikel: Fabrikant: Ursa Minor Ursa Minor Pro is a planetarium and telescope controller program for advanced hobby-astronomers. The program can display the night sky as can be viewed from the

More information

MEDIAGLOBE-III Feature 1 Highest resolution and contrast ratio as small sizes digital planetarium system

MEDIAGLOBE-III Feature 1 Highest resolution and contrast ratio as small sizes digital planetarium system MEDIAGLOBE-III is the latest model of Konica Minolta MEDIAGLOBE, the world s first full-color single-lens digital planetarium. MEDAIGLOBE-III provides the best quality full dome image as small size digital

More information

Mitaka and Milky Way texture map

Mitaka and Milky Way texture map Mitaka and Milky Way texture map Tsunehiko Kato (4D2U Project, NAOJ) Four- Dimensional Digital Universe Project National Astronomical Observatory of Japan March 2nd, 2017 Data to Dome Workshop at Mitaka

More information

High Precision for your astronomical future

High Precision for your astronomical future High Precision for your astronomical future 10MICRON: NO COMPROMISES The developement of 10micron products is aimed to provide both the best performances and the maximum ease of use The availability on

More information

Astronomy 50. Lab Manual

Astronomy 50. Lab Manual Astronomy 50 Lab Manual Union College Spring 2008 Professor Koopmann Professor Wilkin 2 Astronomy 50 Lab Policies Spring 2008 Professor Koopmann, Professor Wilkin For this course, you are required to complete

More information

Remote Observing with HdA/MPIA's 50cm Telescope

Remote Observing with HdA/MPIA's 50cm Telescope Remote Observing with HdA/MPIA's 50cm Telescope Carolin Liefke AstroTechTalk May 5th 2017 Remote observing with HdA/MPIa's 50cm telescope The telescope and its instrumentation Remote observing how does

More information

Lab 1: Measurement Errors Adapted from Holtzman's Intro Lab for Astr110

Lab 1: Measurement Errors Adapted from Holtzman's Intro Lab for Astr110 Lab 1: Measurement Errors Adapted from Holtzman's Intro Lab for Astr110 Purpose: to give students practice making measurements and estimating error, as an introduction to understanding measurements in

More information

Universe in the School (UITS)

Universe in the School (UITS) Date: 4 Th Feb 2019 ` Universe in the School (UITS) G.D. Goenka Public School, Sarita Vihar Month End Report January, 2019 INTRODUCTION: Universe in the School is a program running in the school to integrate

More information

Making an H-R diagram Earth & Sky

Making an H-R diagram Earth & Sky Making an H-R diagram Earth & Sky Name: Introduction Astronomers have discovered relationships between the surface temperatures and luminosities (brightnesses) of stars. These relationships are often presented

More information

Large Scale Structure of the Universe Lab

Large Scale Structure of the Universe Lab Large Scale Structure of the Universe Lab Introduction: Since the mid-1980 s astronomers have gathered data allowing, for the first time, a view of the structure of the Universe in three-dimensions. You

More information

Jupiter s Galilean satellites mutual events as a teaching tool.

Jupiter s Galilean satellites mutual events as a teaching tool. Jupiter s Galilean satellites mutual events as a teaching tool. J.F. Rojas & A. Sanchez-Lavega EPSC 2015 Nantes Introduction The Aula Espazio Gela (AEG) was created at UPV/EHU to promote the study and

More information

THE MOON. G. Iafrate (a), M. Ramella (a) e V. Bologna (b) (a) INAF - Osservatorio Astronomico di Trieste (b)

THE MOON. G. Iafrate (a), M. Ramella (a) e V. Bologna (b) (a) INAF - Osservatorio Astronomico di Trieste (b) THE MOON G. Iafrate (a), M. Ramella (a) e V. Bologna (b) (a) INAF - Osservatorio Astronomico di Trieste (b) Istituto Comprensivo S. Giovanni Sc. Sec. di primo grado M. Codermatz" - Trieste Information

More information

This is the third of 3 parts detailing my experience of auto guiding for astrophotography.

This is the third of 3 parts detailing my experience of auto guiding for astrophotography. AstronomyShed Tutorials Autoguiding - Part 3 - Using you autoguiding setup This is the third of 3 parts detailing my experience of auto guiding for astrophotography. Prerequisites In writing this article

More information

THE LOSMANDY G-11 MOUNT

THE LOSMANDY G-11 MOUNT Checking the parts THE LOSMANDY G-11 MOUNT Depending on which accessories you ordered, your G-11 mount was shipped in four or more boxes. The contents of each box are as follows: Equatorial Mount Adjustable

More information

Exoplanets detection and properties

Exoplanets detection and properties Researching Physics Higher Researching Physics Contents Advice to students Page 3 Page 4 Page 5 Overview of the unit and activities Organising your work and carrying out the activities Assessment issues

More information

Millimagnitude Accuracy Photometry of Extra solar Planets Transits using Small Telescopes

Millimagnitude Accuracy Photometry of Extra solar Planets Transits using Small Telescopes Millimagnitude Accuracy Photometry of Extra solar Planets Transits using Small Telescopes S. Kozłowski 1, 2, A. Szary 1, M. Zub 1, G. Melikidze 1, K. Maciesiak 1, J. A. Gil 1 1 Institute of Astronomy University

More information

Telescopes and Observatories. Parent Guide, page 1 of 2. OurStory: Exploring the Sky. Read the Directions sheets for step-by-step instructions.

Telescopes and Observatories. Parent Guide, page 1 of 2. OurStory: Exploring the Sky. Read the Directions sheets for step-by-step instructions. Parent Guide, page 1 of 2 Read the Directions sheets for step-by-step instructions. SUMMARY In this activity, children and adults will watch and discuss a short video about how people use telescopes. WHY

More information

ADVANCED CCD PHOTOMETRY AND EXOPLANET TRANSIT PHOTOMETRY. By : Kenny A. Diaz Eguigure

ADVANCED CCD PHOTOMETRY AND EXOPLANET TRANSIT PHOTOMETRY. By : Kenny A. Diaz Eguigure ADVANCED CCD PHOTOMETRY AND EXOPLANET TRANSIT PHOTOMETRY By : Kenny A. Diaz Eguigure KELT: THE KILODEGREE EXTREMELY LITTLE TELESCOPE Robotic Survey for Transiting Exoplanets KELT-North Deployed 2005 to

More information

Photoelectric Photometry of the Pleiades Student Manual

Photoelectric Photometry of the Pleiades Student Manual Photoelectric Photometry of the Pleiades Student Manual A Manual to Accompany Software for the Introductory Astronomy Lab Exercise Document SM 2: Version 1.1.1 lab Department of Physics Gettysburg College

More information

Ursa Minor SkyTour Planetarium en montering aansturing software. Robtics

Ursa Minor SkyTour Planetarium en montering aansturing software. Robtics > Model: - Artikel: Fabrikant: Ursa Minor Ursa Minor SkyTour is the lighter version of Ursa Minor Pro program. Ursa Minor SkyTour is a planetarium and telescope controller program for portable Sky-Watcher

More information

ADAS Guide to Telescope Instrumentation and Operation. Produced by Members of the Society, April 2014

ADAS Guide to Telescope Instrumentation and Operation. Produced by Members of the Society, April 2014 ADAS Guide to Telescope Instrumentation and Operation Produced by Members of the Society, April 2014 1 Introduction The ADAS authors hope that this guide will prove useful and ask you to provide a feedback

More information

Your web browser (Safari 7) is out of date. For more security, comfort and. the best experience on this site: Update your browser Ignore

Your web browser (Safari 7) is out of date. For more security, comfort and. the best experience on this site: Update your browser Ignore Your web browser (Safari 7) is out of date. For more security, comfort and Activityengage the best experience on this site: Update your browser Ignore Introduction to GIS What is a geographic information

More information

The Great American Solar Eclipse

The Great American Solar Eclipse The Great American Solar Eclipse Collection of weblinks on eclipse at https://physicsweb.creighton.edu/ Overview: What you can expect to see and where to see it. Why eclipses are so rare and spectacular

More information

Radio observations of the Milky Way from the classroom

Radio observations of the Milky Way from the classroom Radio observations of the Milky Way from the classroom Krzysztof T. Chyży 1 1. Obserwatorium Astronomiczne Uniwersytetu Jagiellońskiego ul. Orla 171, 30-244 Kraków, Poland We present the project to introduce

More information

Photoelectric Photometry of the Pleiades

Photoelectric Photometry of the Pleiades Photoelectric Photometry of the Pleiades Student Manual A Manual to Accompany Software for the Introductory Astronomy Lab Exercise Document SM 2: Version 1 Department of Physics Gettysburg College Gettysburg,

More information

MICRO-GUIDE Reticle Eyepiece Manual

MICRO-GUIDE Reticle Eyepiece Manual MICRO-GUIDE Reticle Eyepiece Manual 2015 Micro-Guide system design by Peter Stättmayer Munich and The Micro Guide eyepiece is like four eyepieces in one. With four separate scales on one reticle you can

More information

Observations with the Meade LX-10 Telescope (Evening Observation)

Observations with the Meade LX-10 Telescope (Evening Observation) Chapter 12 Observations with the Meade LX-10 Telescope (Evening Observation) During this observation period course, you will be using a Meade LX-10 telescope to make observations of celestial objects.

More information

CHARTING THE HEAVENS USING A VIRTUAL PLANETARIUM

CHARTING THE HEAVENS USING A VIRTUAL PLANETARIUM Name Partner(s) Section Date CHARTING THE HEAVENS USING A VIRTUAL PLANETARIUM You have had the opportunity to look at two different tools to display the night sky, the celestial sphere and the star chart.

More information