Transforming from Geographic to Celestial Coordinates

Size: px
Start display at page:

Download "Transforming from Geographic to Celestial Coordinates"

Transcription

1 Transforming from Geographic to Celestial Coordinates Michael McEllin 1 Introduction The simplest astronomical observation of all is that the stars appear to move around the Earth (which, of course is the result of the Earth rotating with respect to the fixed 1 stars). We therefore catalogue the position of astronomical bodies against a Celestial coordinate system that is fixed with respect to the stars, but moves around with respect to Earth based coordinates. Imagine the Earth s equator projected on the sky: instead of latitude and longitude we use Right Ascension to measure angle around the equator and Declination to measure the angle above or below the celestial equator. While declination, often denoted by δ, is measured in degrees, right ascension, α or RA, is traditionally measured in hours, minutes and seconds, which was convenient for early sky mapping because astronomers simply had to note the time on the clock when a star passed through the meridian (the line on the sky going north to south). Four coordinate conversion purposes, of course, we need to deal in angles measured in degrees or radians and convert to the RA convention. Looking down from the North Pole, RA angles are measured anti-clockwise around the celestial equator. It is important to remember this conventional right-handed orientation of coordinates, because it is opposite to the convention used for compass bearings (going clockwise from north) and we will not get our signs right if we do not take this into account. 1 The stars do also have their own proper motions with respect to each other, and there is an apparent parallax motion due to the Earth orbiting the Sun, but these are small and only apparent with sophisticated measurements. One of the reasons we need a good Celestial coordinate system is so we can detect such motions. For this reason the current celestial coordinate system is tied to the positions of very distant quasars which given current technology really do not appear move. 1

2 From the Earth s surface it is, of course, easiest to log the position of something we see in the sky (or detect with other instruments) using measurements such as compass bearing (which astronomers call azimuth - the angle from the direction North) and altitude (the angle above the horizon) - see Figure 1. How do we convert our observations in alt-azimuth form to celestial coordinates? Or how do we convert known position of an object in the sky in celestial coordinates into instructions for identifying the position in alt-azimuth coordinates? What we need is a machine that takes two numbers (such as altitude and azimuth) and spits out Figure 1: Altitude-Azimuth Coordinates right ascension and declination. (Or conversely a machine that takes right ascension and declination and spits out altitude and azimuth.) This is a very common problem in astronomy and there are well known solutions. You can look them up. You can also find simple programs, library subroutines and spreadsheets that perform this function. (See, for example, the astropy Python library). This note is about explaining how it works, and providing formulae than for example could be used in a spreadsheet or python program. Once you know the trick, the geometry and basic trigonometry involved is not difficult, but the conventional way used to describe the algorithm usually involves representing the simulates equations as a matrix equation. This is a technique normally learned at A-level. Matrix methods are enormously important for anyone wishing to program numerical calculations because many problems (such as weather forecasting, for example) usually turn into very large systems of simultaneous equations, often with tens or hundreds of thousands of variables. Using the concepts of matrix algebra is the only way to keep track of all the manipulations that need to be performed. Our coordinate transformation problem is simple enough that it could be written without a matrix equation. Although it would be a bit harder to follow the algorithm it would be just about manageable. If you are up for it, see if you can follow the maths in the next section. It 2

3 is long rather than difficult, and we have to introduce the advanced maths concepts of vectors and matrices in order to keep track of the algebra (otherwise it just gets too difficult to see where you are going without drawing lots of complicated 3D geometry diagrams). The important result, however, is given at the end and you do not need to understand how it comes about to use it. 2 The Algorithm Our initial coordinates and final coordinates are in polar form (that is using only angles. Two numbers at the start and two numbers at the end. In spite of this, the easiest way to work out the conversion is to go through a couple of three dimensional coordinate systems on the way. We should not be surprised at this, in fact, because time is a hidden third coordinate in our polar coordinates, because the Earth is rotating and any conversion must include a time parameter. The plan will involve four stages: 1. Convert to a cartesian ( xyz ) coordinate system, with x pointing north, y pointing west, and z to the sky. (Y to the west gives us a right-handed coordinate system, which is the same as the celestial coordinate system.) 2. Rotate the axes of our coordinate system around the east-west direction so that the z axis is now parallel with the rotation axis of the Earth. 3. Rotate the axes around the new z direction (we will call this z ) until the x axis points towards the vernal equinox, which is the point on the sky where in its annual progress around the ecliptic plane the Sun crosses the celestial equator moving northwards (usually about 20th of March). 4. Convert back from cartesian to polar coordinates to get the celestial values. In practice, steps 2 and 3 will end up being combined into a single 3D rotation. This is where matrix algebra is most useful: it greatly reduces the possibility of making mistakes in the algebraic manipulations by helping us keep track of which lengths get multiplied by which trig function value. 3

4 2.1 Alt-Azimuth to XYZ Imagine that we point to the object on the sky in which we are interested with a meter rule. (Obviously this pointing direction is only valid at one instant - we will need to note the time - before the Earth s rotation moves the sky around. We will now need to work out the x,y,z coordinates of the far end of the meter rule against the x direction running from south to north, the y direction running west to east and the z direction running from the ground vertically upwards. If the Sun where directly overhead the meter rule would leave a shadow on the ground of length cos(a), where A is the altitude angle. The z coordinate - height of the end above the ground - would just be sin(a). Using simple trig. we can find the x-coordinate as cos(a)cos(z), where Z is the Azimuth angle, and the y coordinate as cos(a)sin(z). (Note the - sign when getting the Y value: this is because Azimuth angle comes round clockwise from North (i.e. through East first) but we need Y pointed to the West, 2.2 Coordinate Rotation Examine Figure 2. Here we have left the meter rule in the same position and rotated the rules marking the X and Z axes anticlockwise. (If we are in the northern hemisphere and the Y axis is going out of paper.) This is the right-handed rotation required to move the Z axis to be parallel with the Earths rotation axis. Assuming we are at a latitude, L, then the rotation angle would be θ = ( π 2 L). The thing to keep in mind is that the meter rule is a vector - a real object in space which continues to exist however we choose to lay out other meter rules (at right angles to each other) in order to define a rectangular coordinate system. We can move these rules that mark the axes around as we wish as long as they stay orthogonal, but the projections of the original meter rule on each of them to get coordinates will change as we move them around. It can be seen from the diagram and simple trigonometry that the new coordinate values, x, y and z are given by x = x.cos(θ) + z.sin(θ) (1) y = y (2) z = x.sin(θ) + z.cos(θ) (3) 4

5 Figure 2: Altitude-Azimuth Coordinates This is better expressed as a matrix equation: x cos(θ) 0 sin(θ) y = z sin(θ) 0 cos(θ) x y z (4) This means exactly the same thing as the earlier set of equations, using the matrix multiplication rule, which says that we take the vector on the left and turn it horizontal, i.e: V = [x, y, z]. We then multiple the elements of this vector by the corresponding column values in each row to get back to the equations (1) to (3). The mathematician now thinks of this rotation matrix as a machine into which we put one vector of coordinates [x,y,z] and get out another coordinate vector V = [x, y, z ]. We can write this in matrix shorthand as V = R y (θ).v (5) 5

6 Furthermore, when we want to know how to write down the equations for rotating around the z axis by an angle φ (anti-clockwise looking down the z axis) we can immediately use the same pattern of trig. terms without a lot of detailed thought: x y z = cos(φ) sin(φ) 0 sin(φ) cos(φ) We can write this in matrix shorthand as x y z (6) V = R z (φ).v (7) where the value φ, of course, will depend on the time at which we make the observation, since it has to take account of the Earth action orientation in space relative to the celestial coordinate system. The rules of matrix multiplication immediately now tell us that the complete rotation around both axes can be thought of as two rotation operation apply one after the other: V = R z.r y V (8) Which says that we put V into the machine R y to get V which is immediately fed to the machine R z to get V. Of course, to actually do the calculation we need to see this written in terms of the matrix components: x y z = cos(φ) sin(φ) 0 sin(φ) cos(φ) cos(θ) 0 sin(θ) sin(θ) 0 cos(θ) x y z (9) Now we just multiply out the two matrices using the standard rules, confident that all the trig. terms are in the right places: x cos(φ)cos(θ) sin(φ) cos(φ)sin(θ) x y = sin(φ)cos(θ) cos(φ) sin(φ)sin(θ) y (10) z sin(θ) 0 cos(θ) z If we want to we can multiply this out to get three separate equations. (However, software subroutine libraries generally like to keep things as vectors and matrices, represented as data arrays, because it makes the programming a lot easier.) Anyway, we would have: x = x.cos(φ)cos(θ) + y.sin(φ) + z.cos(φ)sin(θ) (11) 6

7 y = x.sin(φ)cos(θ) + y.cos(φ) + z.sin(φ)sin(θ) (12) z = x.sin(θ) + y.0 + z.cos(θ) (13) We can do a sanity check on these equation (though doing thing the matrix way is a pretty good guarantee we got it all right). If we assume that φ and θ are both zero, then the above equations reduce to x = x, y = y and z = z, as we would expect. Similarly, if we put φ = 0 we just revert to equation (4), and if we put θ = 0 we revert to equation (6). You might like to think about the other checks, where you put φ or θ equal to π/2 or π. 2.3 The Value of φ In order to complete the rotation calculation we need to know what value of φ we should feed into the rotation matrix. This involves using the time to work out how far we need to rotate to bring our x axis pointing to the vernal equinox. This is easy if we know the sidereal time, which runs slightly more than four minute a day faster than Solar time. At this point it is easiest to look up a standard formula for Greenwich Mean Sidereal Time: GM ST = ( D)modulus(24) (14) Where D is the number of days (including fractions of a day) since 12 Noon (Universal Time) on 1st January in the year The modulus reduces the GMST value to the range (That is, we take out any whole multiples of 24 from the answer.) Some programming environments have a built time/date functions that allow you to get a calendar date to year-day count directly. With a language such as Python you can load the astropy library (but in that case you would be using it to do this whole coordinate conversion process anyway). An way to find the value D is to use an on-line Calendar date to Julian Day convertors, such as otherwise you have to program a slightly complex algorithm for converting date to days, properly taking account of leap years. (Fortunately, we no longer have to remember the millennium bug issue arising from the fact that year 2000 though divisible by 4 was a special case with no 29th February.) We then calculate φ as the angle by which the 0 of right ascension has rotated from the meridian, which at 0 of longitude would be: φ = GMST 2π 24 λ (15) 7

8 where λ is longitude east of the Greenwich meridian (all angles in radians). 2.4 Conversion back to Celestial Polar Coordinates In our new coordinate system, the ratio of the y and x coordinates must be the tangent of the hour angle, α - the distance around the celestial equator to the direction in which we are pointing, so the angle is obtained from the arc tangent. Because of the earlier care with the relative orientation of XYZ axes (right-handed) we can get the hour angle directly with: α = atan( y ) (16) x Note that in most computational environments there is a special function, often called ATAN2(y,x), which avoids the possibility of dividing by zero when x = 0 and ensures that the ambiguities about the sign of α are correctly dealt with. The declination, δ is the angle to the equatorial plane, will be: 3 Summary δ = asin(z ) (17) We got there in the end - though as you can see it involves some longdistance algebra and trigonometry (though none of it, line by line, is particularly difficult). Matrix algebra concepts help us to keep track of all the multiplications. In fact, the idea of a rotation matrix is something that comes up again and again in practical applications of maths not just in astronomy but also in physics (including high-energy physics), engineering and computer graphics. Matrix algebra and computers go together extremely well, because we find it easy to represent complex equations for numerical solution as large arrays, which are treated as matrices by widely used subroutine libraries. This allows us to use and re-use very reliable, well tested and very efficient software for handling matrices over and over again on many different problems that seem at first sight to have little relationship with each other. What we have explored is a relatively trivial application, though one that turns up again and again. If we were working in more dimensions, of course, (perhaps 4, 11 or even 10,000) we would simply not bother to worry about writing out all the separate equations explicitly: we just trust the matrix algebra to keep us straight. 8

Coordinates on the Sphere

Coordinates on the Sphere Survey Observations Coordinates on the Sphere Any position on the surface of a sphere (such as the Earth or the night sky) can be expressed in terms of the angular coordinates latitude and longitude Latitude

More information

Time, coordinates and how the Sun and Moon move in the sky

Time, coordinates and how the Sun and Moon move in the sky Time, coordinates and how the Sun and Moon move in the sky Using the colors and magnitudes of quasars drawn from the SDSS Catalog Archive Server to distinguish quasars from stars using the light they emit

More information

PHAS 1511: Foundations of Astronomy

PHAS 1511: Foundations of Astronomy PHAS 1511: Foundations of Astronomy Dr Roger Wesson Research interests: deaths of stars. Planetary nebulae, novae and supernovae. Astronomy: some maths You can see that distances in astronomy are huge.

More information

Understanding Positional Astronomy Part 2 Celestial Co-ordinates Difficulty: Intermediate

Understanding Positional Astronomy Part 2 Celestial Co-ordinates Difficulty: Intermediate Exercise: Understanding Positional Astronomy Part 2 Celestial Co-ordinates Difficulty: Intermediate Objectives In Part 1 you learned about Celestial Sphere and how the stars appear to move across the night

More information

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

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

More information

ASTRONOMICAL COORDINATE SYSTEMS CELESTIAL SPHERE

ASTRONOMICAL COORDINATE SYSTEMS CELESTIAL SPHERE ASTRONOMICAL COORDINATE SYSTEMS CELESTIAL SPHERE To the naked eye, stars appear fixed on the sky with respect to one another. These patterns are often grouped into constellations. Angular measurements

More information

Oberth: Energy vs. Momentum

Oberth: Energy vs. Momentum 1 2 The Oberth Effect 3 Oberth: Energy vs. Momentum 4 The Celestial Sphere From our perspective on Earth the stars appear embedded on a distant 2-dimensional surface the Celestial Sphere. 5 The Celestial

More information

LOCATING CELESTIAL OBJECTS: COORDINATES AND TIME. a. understand the basic concepts needed for any astronomical coordinate system.

LOCATING CELESTIAL OBJECTS: COORDINATES AND TIME. a. understand the basic concepts needed for any astronomical coordinate system. UNIT 2 UNIT 2 LOCATING CELESTIAL OBJECTS: COORDINATES AND TIME Goals After mastery of this unit, you should: a. understand the basic concepts needed for any astronomical coordinate system. b. understand

More information

Meridian Circle through Zenith, North Celestial Pole, Zenith Direction Straight Up from Observer. South Celestial Pole

Meridian Circle through Zenith, North Celestial Pole, Zenith Direction Straight Up from Observer. South Celestial Pole Chapter 3 How Earth and Sky Work- Effects of Latitude In chapters 3 and 4we will learn why our view of the heavens depends on our position on the Earth, the time of day, and the day of the year. We will

More information

Topic Guide: The Celestial Sphere. GCSE (9-1) Astronomy. Pearson Edexcel Level 1/Level 2 GCSE (9-1) in Astronomy (1AS0)

Topic Guide: The Celestial Sphere. GCSE (9-1) Astronomy. Pearson Edexcel Level 1/Level 2 GCSE (9-1) in Astronomy (1AS0) Topic Guide: The Celestial Sphere GCSE (9-1) Astronomy Pearson Edexcel Level 1/Level 2 GCSE (9-1) in Astronomy (1AS0) The Celestial Sphere Contents Specification Points 1 The Astronomy 2 Equatorial coordinates

More information

CELESTIAL COORDINATES

CELESTIAL COORDINATES ASTR 1030 Astronomy Lab 27 Celestial Coordinates CELESTIAL COORDINATES GEOGRAPHIC COORDINATES The Earth's geographic coordinate system is familiar to everyone - the north and south poles are defined by

More information

Chapter S1 Celestial Timekeeping and Navigation. How do we define the day, month, year, and planetary time periods?

Chapter S1 Celestial Timekeeping and Navigation. How do we define the day, month, year, and planetary time periods? Chapter S1 Celestial Timekeeping and Navigation S1.1 Astronomical Time Periods Our goals for learning:! How do we define the day, month, year, and planetary time periods?! How do we tell the time of day?!

More information

Chapter S1 Lecture. The Cosmic Perspective Seventh Edition. Celestial Timekeeping and Navigation Pearson Education, Inc.

Chapter S1 Lecture. The Cosmic Perspective Seventh Edition. Celestial Timekeeping and Navigation Pearson Education, Inc. Chapter S1 Lecture The Cosmic Perspective Seventh Edition Celestial Timekeeping and Navigation 2014 Pearson Education, Inc. Celestial Timekeeping and Navigation 2014 Pearson Education, Inc. S1.1 Astronomical

More information

Discovering the Night Sky

Discovering the Night Sky Discovering the Night Sky Guiding Questions 1. What role did astronomy play in ancient civilizations? 2. Are the stars that make up a constellation actually close to one another? 3. Are the same stars

More information

Discovering the Night Sky

Discovering the Night Sky Guiding Questions Discovering the Night Sky 1. What role did astronomy play in ancient civilizations? 2. Are the stars that make up a constellation actually close to one another? 3. Are the same stars

More information

Knowing the Heavens. Chapter Two. Guiding Questions. Naked-eye (unaided-eye) astronomy had an important place in ancient civilizations

Knowing the Heavens. Chapter Two. Guiding Questions. Naked-eye (unaided-eye) astronomy had an important place in ancient civilizations Knowing the Heavens Chapter Two Guiding Questions 1. What role did astronomy play in ancient civilizations? 2. Are the stars that make up a constellation actually close to one another? 3. Are the same

More information

Fundamentals of Satellite technology

Fundamentals of Satellite technology Fundamentals of Satellite technology Prepared by A.Kaviyarasu Assistant Professor Department of Aerospace Engineering Madras Institute Of Technology Chromepet, Chennai Orbital Plane All of the planets,

More information

2. Modern: A constellation is a region in the sky. Every object in the sky, whether we can see it or not, is part of a constellation.

2. Modern: A constellation is a region in the sky. Every object in the sky, whether we can see it or not, is part of a constellation. 6/14 10. Star Cluster size about 10 14 to 10 17 m importance: where stars are born composed of stars. 11. Galaxy size about 10 21 m importance: provide a stable environment for stars. Composed of stars.

More information

Introduction To Modern Astronomy I: Solar System

Introduction To Modern Astronomy I: Solar System ASTR 111 003 Fall 2007 Lecture 02 Sep. 10, 2007 Introduction To Modern Astronomy I: Solar System Introducing Astronomy (chap. 1-6) Planets and Moons (chap. 7-15) Chap. 16: Our Sun Chap. 28: Search for

More information

Welcome to Astronomy 402/602

Welcome to Astronomy 402/602 Welcome to Astronomy 402/602 Introductions Syllabus Telescope proposal Coordinate Systems (Lecture) Coordinate System Exercise Light (Lecture) Telescopes (Lecture) Syllabus Course goals Course expectations

More information

PHSC 1053: Astronomy Time and Coordinates

PHSC 1053: Astronomy Time and Coordinates PHSC 1053: Astronomy Time and Coordinates Astronomical Clocks Earth s Rotation on its Axis Time between two successive meridian transits of the sun 1 solar day (our adopted clock time) 24 hours (86,400

More information

Chapter 1: Discovering the Night Sky. The sky is divided into 88 unequal areas that we call constellations.

Chapter 1: Discovering the Night Sky. The sky is divided into 88 unequal areas that we call constellations. Chapter 1: Discovering the Night Sky Constellations: Recognizable patterns of the brighter stars that have been derived from ancient legends. Different cultures have associated the patterns with their

More information

Coordinate Systems for Astronomy or: How to get your telescope to observe the right object

Coordinate Systems for Astronomy or: How to get your telescope to observe the right object Coordinate Systems for Astronomy or: How to get your telescope to observe the right object Figure 1: Basic definitions for the Earth Definitions - Poles, Equator, Meridians, Parallels The rotation of the

More information

Physics 312 Introduction to Astrophysics Lecture 3

Physics 312 Introduction to Astrophysics Lecture 3 Physics 312 Introduction to Astrophysics Lecture 3 James Buckley buckley@wuphys.wustl.edu Lecture 3 Celestial Coordinates the Planets and more History Reason for the Seasons Summer Solstice: Northern Hemisphere

More information

Daily Motions. Daily Motions. Solar and Sidereal Days. Annual Motions of the Sun. Coordinate system on Earth. Annual Motion of the Stars.

Daily Motions. Daily Motions. Solar and Sidereal Days. Annual Motions of the Sun. Coordinate system on Earth. Annual Motion of the Stars. Sun: rises in the east sets in the west travels on an arc across the sky 24 hours Daily Motions Solar Day = 24 hours Stars: stars travel on arcs in the sky moving from east to west. some stars rise and

More information

Knowing the Heavens. Goals: Constellations in the Sky

Knowing the Heavens. Goals: Constellations in the Sky Goals: Knowing the Heavens To see how the sky changes during a night and from night to night. To measure the positions of stars in celestial coordinates. To understand the cause of the seasons. Constellations

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

Knowing the Heavens. Goals: Constellations in the Sky

Knowing the Heavens. Goals: Constellations in the Sky Goals: Knowing the Heavens To see how the sky changes during a night and from night to night. To measure the positions of stars in celestial coordinates. To understand the cause of the seasons. Constellations

More information

Celestial Sphere Spectroscopy (Something interesting; e.g., advanced data analyses with IDL)

Celestial Sphere Spectroscopy (Something interesting; e.g., advanced data analyses with IDL) AST326, 2010 Winter Semester Celestial Sphere Spectroscopy (Something interesting; e.g., advanced data analyses with IDL) Practical Assignment: analyses of Keck spectroscopic data from the instructor (can

More information

The Measurement of Time

The Measurement of Time CHAPTER TWO The Measurement of Time Solar Time In antiquity the time of day was measured by the direction of a shadow cast in sunlight. This resulted in the development of a wide variety of sophisticated

More information

Appearance of the Sky Orientation Motion of sky Seasons Precession (?)

Appearance of the Sky Orientation Motion of sky Seasons Precession (?) Today Appearance of the Sky Orientation Motion of sky Seasons Precession (?) The Celestial Sphere Stars at different distances all appear to lie on the celestial sphere. The ecliptic is the Sun s apparent

More information

Venus Project Book, the Galileo Project, GEAR

Venus Project Book, the Galileo Project, GEAR 1 Venus Project Book, the Galileo Project, GEAR Jeffrey La Favre November, 2013 Updated March 31, 2016 You have already learned about Galileo and his telescope. Recall that he built his first telescopes

More information

Energy Efficiency, Acoustics & Daylighting in building Prof. B. Bhattacharjee Department of Civil Engineering Indian Institute of Technology, Delhi

Energy Efficiency, Acoustics & Daylighting in building Prof. B. Bhattacharjee Department of Civil Engineering Indian Institute of Technology, Delhi Energy Efficiency, Acoustics & Daylighting in building Prof. B. Bhattacharjee Department of Civil Engineering Indian Institute of Technology, Delhi Lecture - 05 Introduction & Environmental Factors (contd.)

More information

A2 Principi di Astrofisica. Coordinate Celesti

A2 Principi di Astrofisica. Coordinate Celesti A2 Principi di Astrofisica Coordinate Celesti ESO La Silla Tel. 3.6m Celestial Sphere Our lack of depth perception when we look into space creates the illusion that Earth is surrounded by a celestial sphere.

More information

Appearance of the Sky Orientation Motion of sky Seasons Precession (?)

Appearance of the Sky Orientation Motion of sky Seasons Precession (?) Today Appearance of the Sky Orientation Motion of sky Seasons Precession (?) The Celestial Sphere Stars at different distances all appear to lie on the celestial sphere. The ecliptic is the Sun s apparent

More information

NATIONAL UNIVERSITY OF SINGAPORE DEPARTMENT OF MATHEMATICS SEMESTER 2 EXAMINATION Heavenly Mathematics: Cultural Astronomy

NATIONAL UNIVERSITY OF SINGAPORE DEPARTMENT OF MATHEMATICS SEMESTER 2 EXAMINATION Heavenly Mathematics: Cultural Astronomy 1 GEK1506 NATIONAL UNIVERSITY OF SINGAPORE DEPARTMENT OF MATHEMATICS SEMESTER 2 EXAMINATION 2005 2006 GEK1506 Heavenly Mathematics: Cultural Astronomy April/May 2006 Time allowed: 2 hours 1. After taking

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

Modern Navigation. Thomas Herring

Modern Navigation. Thomas Herring 12.215 Modern Navigation Thomas Herring Review of Monday s Class Spherical Trigonometry Review plane trigonometry Concepts in Spherical Trigonometry Distance measures Azimuths and bearings Basic formulas:

More information

A Review of Coordinates

A Review of Coordinates A Review of Coordinates Latitude and Longitude On Earth, one way to describe a location is with a coordinate system which is fixed to the Earth's surface. The system is oriented by the spin axis of the

More information

AY120A,B CHEAT-SHEET FOR SPHERICAL COORDINATE TRANSFORMATION

AY120A,B CHEAT-SHEET FOR SPHERICAL COORDINATE TRANSFORMATION AY120A,B CHEAT-SHEET FOR SPHERICAL COORDINATE TRANSFORMATION Carl Heiles In our never-ending attempt to make your life easier, we present you with the quickest of quick summaries of spherical coordinate

More information

Astronomy 103: First Exam

Astronomy 103: First Exam Name: Astronomy 103: First Exam Stephen Lepp September 21, 2010 Each question is worth 2 points. Write your name on this exam and on the scantron. Short Answer Mercury What is the closest Planet to the

More information

UNIT 6 CELESTIAL SPHERE AND EQUINOCTIAL SYSTEM OF COORDINATES

UNIT 6 CELESTIAL SPHERE AND EQUINOCTIAL SYSTEM OF COORDINATES UNIT 6 CELESTIAL SPHERE AND EQUINOCTIAL SYSTEM OF COORDINATES Structure 6.1 Introduction Objectives 6.2 References 6.3 Apparent Annual Motion of the Sun and the Concept of the Ecliptic and the Obliquity

More information

Astronomy 101: 9/18/2008

Astronomy 101: 9/18/2008 Astronomy 101: 9/18/2008 Announcements Pick up a golf ball at the front of the class or get one from Alex; you will need it for an in-class activity today. You will also need the question sheet from Alex.

More information

A Sky Full of Stars - II.

A Sky Full of Stars - II. A Sky Full of Stars - II. Learning Objectives! What is the latitude of the Equator and of the Earth s North and South Poles? What is the declination of the Celestial Equator and of the Celestial Poles?!

More information

ClassAction: Coordinates and Motions Module Instructor s Manual

ClassAction: Coordinates and Motions Module Instructor s Manual ClassAction: Coordinates and Motions Module Instructor s Manual Table of Contents Section 1: Warm-up Questions...3 The Sun s Path 1 4 Section 2: General Questions...5 Sledding or Going to the Beach...6

More information

PY 124: Terrestrial Position from Celestial Observations

PY 124: Terrestrial Position from Celestial Observations The linked image cannot be displayed. The file may have been moved, renamed, or deleted. Verify that the link points to the correct file and location. The linked image cannot be displayed. The file may

More information

PARALLAX AND PROPER MOTION

PARALLAX AND PROPER MOTION PARALLAX AND PROPER MOTION What will you learn in this Lab? We will be introducing you to the idea of parallax and how it can be used to measure the distance to objects not only here on Earth but also

More information

Physics Lab #2: Learning Starry Night, Part 1

Physics Lab #2: Learning Starry Night, Part 1 Physics 10293 Lab #2: Learning Starry Night, Part 1 Introduction In this lab, we'll learn how to use the Starry Night software to explore the sky, and at the same time, you ll get a preview of many of

More information

Geometry of Earth Sun System

Geometry of Earth Sun System 12S56 Geometry of Earth Sun System Figure below shows the basic geometry Northern Hemisphere Winter ω equator Earth s Orbit Ecliptic ω ω SUN equator Northern Hemisphere Spring Northern Hemisphere Fall

More information

Day, Night & the Seasons. Lecture 2 1/21/2014

Day, Night & the Seasons. Lecture 2 1/21/2014 Day, Night & the Seasons Lecture 2 1/21/2014 Logistics The following students see me after class: A. Gonzalez, Chen Anyone who was not here on first day see me after class Pin Numbers - if you have not

More information

Exercise 1.0 THE CELESTIAL EQUATORIAL COORDINATE SYSTEM

Exercise 1.0 THE CELESTIAL EQUATORIAL COORDINATE SYSTEM Exercise 1.0 THE CELESTIAL EQUATORIAL COORDINATE SYSTEM Equipment needed: A celestial globe showing positions of bright stars and Messier Objects. I. Introduction There are several different ways of representing

More information

Astronomy 101 Lab Manual. Victor Andersen Community College of Aurora

Astronomy 101 Lab Manual. Victor Andersen Community College of Aurora Astronomy 101 Lab Manual Victor Andersen Community College of Aurora victor.andersen@ccaurora.edu January 8, 2013 2 Contents 1 Angular Measures 5 1.1 Introduction............................ 5 1.1.1 Degrees,

More information

Phys Lab #1: The Sun and the Constellations

Phys Lab #1: The Sun and the Constellations Phys 10293 Lab #1: The Sun and the Constellations Introduction Astronomers use a coordinate system that is fixed to Earth s latitude and longitude. This way, the coordinates of a star or planet are the

More information

Time and Diurnal Motion

Time and Diurnal Motion Time and Diurnal Motion Time and Diurnal Motion A. Geography: mapping the earth 2 B. Equatorial Coordinates C. Local Horizon System Updated 2014Jan11 A. Geography: mapping the earth Geometry: measure the

More information

6/17. Universe from Smallest to Largest:

6/17. Universe from Smallest to Largest: 6/17 Universe from Smallest to Largest: 1. Quarks and Leptons fundamental building blocks of the universe size about 0 (?) importance: quarks combine together to form neutrons and protons. One of the leptons

More information

Astronomy 311 Professor Menningen January 2, Syllabus overview books & supplies course goals assignments & grading About the professor

Astronomy 311 Professor Menningen January 2, Syllabus overview books & supplies course goals assignments & grading About the professor 1 Astronomy 311 Professor Menningen January 2, 2014 Syllabus overview books & supplies course goals assignments & grading About the professor 2 How to Learn Astronomy Stay curious Interact with the same

More information

Celestial Sphere & Solar Motion Lab (Norton s Star Atlas pages 1-4)

Celestial Sphere & Solar Motion Lab (Norton s Star Atlas pages 1-4) Name: Date: Celestial Sphere & Solar Motion Lab (Norton s Star Atlas pages 1-4) Italicized topics below will be covered only at the instructor s discretion. 1.0 Purpose: To understand a) the celestial

More information

Time and Diurnal Motion. 1a. The Earth Is Flat. 1c. Aristotle ( BC) 1b. The Earth Is Round. Time and Diurnal Motion

Time and Diurnal Motion. 1a. The Earth Is Flat. 1c. Aristotle ( BC) 1b. The Earth Is Round. Time and Diurnal Motion Time and Diurnal Motion Time and Diurnal Motion A. Geography: mapping the earth 2 B. Equatorial Coordinates C. Local Horizon System A. Geography: mapping the earth Geometry: measure the earth! 1) The earth

More information

3. The Sun s Position

3. The Sun s Position 3. The Sun s Position In order to understand how to collect energy from the sun, one must first be able to predict the location of the sun relative to the collection device. In this chapter we develop

More information

Astronomy 153 & 154 Lab 2 Excel, Units and Conversions + Angles and Coordinates

Astronomy 153 & 154 Lab 2 Excel, Units and Conversions + Angles and Coordinates Astronomy 153 & 154 Lab 2 Excel, Units and Conversions + Angles and Coordinates In Astronomy lab, there are important skills and concepts that students will need to use and understand in order to complete

More information

The sky and the celestial sphere

The sky and the celestial sphere Chapter 1 The sky and the celestial sphere The Sun, and sometimes the Moon are, by and large, the only astronomical objects visible in the day sky. Traditionally, astronomy has been a nocturnal activity.

More information

2. Descriptive Astronomy ( Astronomy Without a Telescope )

2. Descriptive Astronomy ( Astronomy Without a Telescope ) How do we locate stars in the heavens? 2. Descriptive Astronomy ( Astronomy Without a Telescope ) What stars are visible from a given location? Where is the sun in the sky at any given time? Where are

More information

Time, Seasons, and Tides

Time, Seasons, and Tides Time, Seasons, and Tides Celestial Sphere Imagine the sky as a great, hollow, sphere surrounding the Earth. The stars are attached to this sphere--- some bigger and brighter than others--- which rotates

More information

Section 2. Locating Astronomical Objects in the Night Sky What Do You See? What Do You See? Think About It. Investigate.

Section 2. Locating Astronomical Objects in the Night Sky What Do You See? What Do You See? Think About It. Investigate. Section 2 Locating Astronomical Objects in the Night Sky Section 2 Locating Astronomical Objects in the Night Sky What Do You See? What Do You See? Learning Outcomes In this section, you will Construct

More information

Time and Diurnal Motion

Time and Diurnal Motion Time and Diurnal Motion Time and Diurnal Motion A. Geography: mapping the earth 2 B. Equatorial Coordinates C. Local Horizon System Updated Sep 30, 2012 A. Geography: mapping the earth Geometry: measure

More information

USING YOUR FIELD GUIDE AND STAR CHARTS PRELAB

USING YOUR FIELD GUIDE AND STAR CHARTS PRELAB USING YOUR FIELD GUIDE AND STAR CHARTS PRELAB 1. Explain the main differences between using a star wheel and a star chart to find things in the night sky. 2. Explain the terms Hour Angle, Meridian and

More information

The time they chose was the Vernal Equinox of March 20, 2000, at 7:30 AM Greenwich Mean Time (GMT). Right Ascension Offset

The time they chose was the Vernal Equinox of March 20, 2000, at 7:30 AM Greenwich Mean Time (GMT). Right Ascension Offset Star Coordinates and the Celestial Dome Astronomers have mapped out the sky in the shape of a spherical dome the Celestial Sphere, where earth is just a tiny spec at the center of the dome. The celestial

More information

Astronomy 291. Professor Bradley M. Peterson

Astronomy 291. Professor Bradley M. Peterson Astronomy 291 Professor Bradley M. Peterson The Sky As a first step, we need to understand the appearance of the sky. Important points (to be explained): The relative positions of stars remain the same

More information

PHYSICS 1030 Homework #9

PHYSICS 1030 Homework #9 PHYSICS 1030 Homework #9 (Due Dec. 6, 2017) Find the position of the planet Mars at time t D December 6, 2017, 5:00 am EST. You will do this by following the steps shown below. (a) Convert the time t to

More information

SUB-PROBLEM 2: HOW DO SUN AND EARTH MOVE FOR THE EXISTING CYCLES AND SYMMETRIES TO OCCUR? (The invention of a Sun/Earth model)

SUB-PROBLEM 2: HOW DO SUN AND EARTH MOVE FOR THE EXISTING CYCLES AND SYMMETRIES TO OCCUR? (The invention of a Sun/Earth model) SUB-PROBLEM 2: HOW DO SUN AND EARTH MOVE FOR THE EXISTING CYCLES AND SYMMETRIES TO OCCUR? (The invention of a Sun/Earth model) We have made several advancements in the problem of interest proposed at the

More information

ASTRONOMY 25 SUMMER 2017 PROJECT 2: THE HEIGHT OF THE SUN

ASTRONOMY 25 SUMMER 2017 PROJECT 2: THE HEIGHT OF THE SUN Name(s) Section Time ASTRONOMY 25 SUMMER 2017 PROJECT 2: THE HEIGHT OF THE SUN Rules: 1) Do the project by yourself or with one other person. If you want to work with a partner, get an agreement form from

More information

Time and Diurnal Motion. 1a. The Earth Is Flat. 1c. Aristotle ( BC) 1b. The Earth Is Round. Time and Diurnal Motion

Time and Diurnal Motion. 1a. The Earth Is Flat. 1c. Aristotle ( BC) 1b. The Earth Is Round. Time and Diurnal Motion Time and Diurnal Motion Time and Diurnal Motion A. Geography: mapping the earth 2 B. Equatorial Coordinates C. Local Horizon System Updated April 12, 2006 A. Geography: mapping the earth Geometry: measure

More information

Astronomical coordinate systems. ASTR320 Monday January 22, 2018

Astronomical coordinate systems. ASTR320 Monday January 22, 2018 Astronomical coordinate systems ASTR320 Monday January 22, 2018 Special public talk this week: Mike Brown, Pluto Killer Wednesday at 7:30pm in MPHY204 Other news Munnerlyn lab is hiring student engineers

More information

Guiding Questions. Discovering the Night Sky. iclicker Qustion

Guiding Questions. Discovering the Night Sky. iclicker Qustion Guiding Questions Discovering the Night Sky 1 1. What methods do scientists use to expand our understanding of the universe? 2. What makes up our solar system? 3. What are the stars? Do they last forever?

More information

Name: Date: 5. The bright stars Vega, Deneb, and Altair form A) the summer triangle. B) the winter triangle. C) the Big Dipper. D) Orion, the Hunter.

Name: Date: 5. The bright stars Vega, Deneb, and Altair form A) the summer triangle. B) the winter triangle. C) the Big Dipper. D) Orion, the Hunter. Name: Date: 1. If there are about 6000 stars in the entire sky that can be seen by the unaided human eye, about how many stars would be seen at a particular instant on a given dark night from a single

More information

Introduction To Astronomy Lesson 1

Introduction To Astronomy Lesson 1 Introduction To Astronomy Lesson 1 Topics for this Lesson Earth Based Coordinates The Celestial Sphere and Sky Coordinates The North Star Measuring Distances on the Sky The Motion of Objects in the Sky

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 0 Charting the Heavens Lecture Presentation 0.0 Astronmy a why is that subject! Q. What rare astronomical event happened in late summer

More information

The Celestial Sphere. From our perspective on Earth the stars appear embedded on a distant 2 dimensional surface the Celestial Sphere.

The Celestial Sphere. From our perspective on Earth the stars appear embedded on a distant 2 dimensional surface the Celestial Sphere. 1 The Celestial Sphere From our perspective on Earth the stars appear embedded on a distant 2 dimensional surface the Celestial Sphere. 2 The Celestial Sphere Although we know better, it is helpful to

More information

4 Solar System and Time

4 Solar System and Time 4 olar ystem and Time 4.1 The Universe 4.1.1 Introduction The Universe consists of countless galaxies distributed throughout space. The bodies used in astro navigation belong to the Galaxy known as the

More information

Week 2. Problem Set 1 is due Thursday via Collab. Moon awareness Weather awareness

Week 2. Problem Set 1 is due Thursday via Collab. Moon awareness Weather awareness Week 2 Lab 1 observa.ons start real soon (in progress?) Prelab done? Observa.ons should wrap up this week. Lab 2 + Prelab 2 will be out next week early and observa.ons will follow Lab 1 write-up guidance

More information

Chapter 3: Coordinates & time; much of this chapter is based on earlier work by Katherine Bracher

Chapter 3: Coordinates & time; much of this chapter is based on earlier work by Katherine Bracher Intro Astro - Andrea K Dobson - Chapter 3 - August 2018 1! /! 12 Chapter 3: Coordinates & time; much of this chapter is based on earlier work by Katherine Bracher celestial sphere and celestial coordinates

More information

Local Coordinates. These are centered upon you, the observer.

Local Coordinates. These are centered upon you, the observer. Astronomy 30, Observing #3 Name: Lab Partners: Date: Materials: This lab, with the star chart completed from the pre-lab. Some sheets of paper for sketches. A pencil with eraser. A small flashlight, ideally

More information

CHAPTER 5 VECTOR TRANSFORMATIONS. look at parametric equations. This is because we can always associate a position

CHAPTER 5 VECTOR TRANSFORMATIONS. look at parametric equations. This is because we can always associate a position CHAPTER 5 VECTOR TRANSFORMATIONS Now that we ve talked about vectors, they re going to give us a whole new way to look at parametric equations. This is because we can always associate a position vector,

More information

What do you think? 2/3/09. Mastering Astronomy Assignment 2. Constellations the 88 semi-rectangular regions that make up the sky

What do you think? 2/3/09. Mastering Astronomy Assignment 2. Constellations the 88 semi-rectangular regions that make up the sky //09 Mastering Astronomy Assignment Due Feb 0, am Read Chapter Constellations the 88 semi-rectangular regions that make up the sky Northern constellations have Latinized Greek-mythology names: Orion, Cygnus,

More information

OBSERVING PROJECT PARTNER ELECTION

OBSERVING PROJECT PARTNER ELECTION ASTRONOMY 25 NOON SUN PROJECT P. P. 1 Name(s) Section Day/Time Fill in either Part 1 or Part 2. OBSERVING PROJECT PARTNER ELECTION Part I. SOLO OBSERVER I will do the observing project by myself. I will

More information

Using Your Astrolabe

Using Your Astrolabe Using Your Astrolabe So, you are working on your Astronomy Before the Telescope certification with the Astronomical League. You have built your Astrolabe. Now what? It seems easy enough to use a rotating

More information

PHYSICS 1030 Homework #9

PHYSICS 1030 Homework #9 PHYSICS 1030 Homework #9 (Due Dec. 5, 2018, 6:00 pm) Find the position of the planet Mars at time t D December 5, 2018, 7:50 pm EST. You will do this by following the steps shown below. (a) Convert the

More information

Summary Sheet #1 for Astronomy Main Lesson

Summary Sheet #1 for Astronomy Main Lesson Summary Sheet #1 for Astronomy Main Lesson From our perspective on earth The earth appears flat. We can see half the celestial sphere at any time. The earth s axis is always perpendicular to the equator.

More information

The. Astronomy is full of cycles. Like the day, the month, & the year In this section we will try to understand these cycles.

The. Astronomy is full of cycles. Like the day, the month, & the year In this section we will try to understand these cycles. Understanding The Sky Astronomy is full of cycles Like the day, the month, & the year In this section we will try to understand these cycles. For Example Why do we think of stars as nighttime objects?

More information

Gnomon (a thin, round stick at least a foot long and capable of being put into the ground or stood up vertically)

Gnomon (a thin, round stick at least a foot long and capable of being put into the ground or stood up vertically) Name: Partner(s): Lab #3 Celestial Navigation Due 7/2 Objectives In this lab you will take measurements of the sun s motion around noon and the north star s position in the sky. You will use this data

More information

What causes the seasons? 2/11/09

What causes the seasons? 2/11/09 2/11/09 We can recognize solstices and equinoxes by Sun s path across sky: Summer solstice: Highest path, rise and set at most extreme north of due east. Winter solstice: Lowest path, rise and set at most

More information

The Nature of Stars. The Nature of Stars

The Nature of Stars. The Nature of Stars The Nature of Stars The total number of stars is beyond our ability to count Only a few stars have been studied in detail. To understand the nature of stars, we will compare and catalog the stars by: Physical

More information

CHAPTER 20 SIGHT REDUCTION

CHAPTER 20 SIGHT REDUCTION CHAPTER 20 SIGHT REDUCTION BASIC PRINCIPLES 2000. Introduction Reducing a celestial sight to obtain a line of position consists of six steps: 1. Correcting sextant altitude (hs) to obtain observed altitude

More information

Principles of Global Positioning Systems Spring 2008

Principles of Global Positioning Systems Spring 2008 MIT OpenCourseWare http://ocw.mit.edu 12.540 Principles of Global Positioning Systems Spring 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. 12.540

More information

Chapter 4 Earth, Moon, and Sky 107

Chapter 4 Earth, Moon, and Sky 107 Chapter 4 Earth, Moon, and Sky 107 planetariums around the world. Figure 4.4 Foucault s Pendulum. As Earth turns, the plane of oscillation of the Foucault pendulum shifts gradually so that over the course

More information

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

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

More information

The Earth is a Rotating Sphere

The Earth is a Rotating Sphere The Earth is a Rotating Sphere The Shape of the Earth Earth s Rotation ( and relative movement of the Sun and Moon) The Geographic Grid Map Projections Global Time The Earth s Revolution around the Sun

More information

Chapter 2 Discovering the Universe for Yourself

Chapter 2 Discovering the Universe for Yourself Chapter 2 Discovering the Universe for Yourself 2.1 Patterns in the Night Sky Our goals for learning: What does the universe look like from Earth? Why do stars rise and set? Why do the constellations we

More information

Astrology Class Madison, Wisconsin. 43 North 89 West. September Daylight

Astrology Class Madison, Wisconsin. 43 North 89 West. September Daylight Astrology Class Madison, Wisconsin 43 North 89 West 7 32 September 21 2005 Daylight Astrology Class Madison, Wisconsin September 21,2005 7:32 43 North 89 West Names & Planetary Character Luminaries Symbols

More information

Questions for Today s Class?

Questions for Today s Class? PHYS 1403 Stars and Galaxies Questions for Today s Class? 1. Angles are important in Astronomy, What do I need to know about Angles? 2. What is a Celestial Sphere? 3. How do I Find Objects with my Telescope?

More information