Lab Assignment #3 ASE 272N/172G Satellite Navigation Prof. G. Lightsey Assigned: October 28, 2003 Due: November 11, 2003 in class

Size: px
Start display at page:

Download "Lab Assignment #3 ASE 272N/172G Satellite Navigation Prof. G. Lightsey Assigned: October 28, 2003 Due: November 11, 2003 in class"

Transcription

1 The University of Texas at Austin Department of Aerospace Engineering and Engineering Mechanics Lab Assignment #3 ASE 272N/172G Satellite Navigation Prof. G. Lightsey Assigned: October 28, 2003 Due: November 11, 2003 in class 1 Objectives We have previously studied the determination of the transmitter locations using the broadcast ephemerides, and the pseudorange measurements made from the receiver code generation/correlation process. We have also discussed the algorithm required to take this information and solve for the receiver s position (called a position fix). In this lab, we put it all together to actually determine the location of the receiver based on its own measurements. We will use results from previous labs to analyze the data that we collect. We will also look at the effect of geometry on the solution, known as Dilution of Precision (DOP). Procedure The data collection portion of this lab is actually very simple. We will collect 10 minutes of raw data using the Rhino Rover GPS Backpacks. We will download the broadcast ephemeris using the CORS website for station TXAU and process the satellite positions and pseudorange measurements simultaneously to compute position fixes. 1

2 2 Data Collection Collect 10 minutes of Garmin pseudorange data. (a) On a day of your choice, check out one of the Backpacks from either my office, or from WRW 412D. Make sure the batteries are charged and then take the Backpack to a nearby open area. (b) Place the Backpack in a fixed location so that it has as clear a view of the sky as possible. Extend the antenna mast and make sure the mast is positioned in such a way that the antenna does no shift excessively during data collection. Plug the receiver into the battery pack, power on the TDS Recon and open Rhino Rover as explained in the Backpack User s Manual. Do not start recording observation data yet. (c) Wait until the receiver is tracking at least 4 satellites and computing position fixes to begin collecting data. This is very important, as the receiver may appear to be computing position fixes even when it has less than 4 satellites (this is not actually the case, it may be computing a 2-dimensional fix constrained to the surface of the Earth). You may easily check to see how many satellites the receiver is tracking by noting the number of bars displayed on the Rhino Rover screen. When there are at least 4 green bars (more is better), you may begin recording data per the instructions given in the Backpack User s Manual. If you stop collection for any reason and need to begin again, you must close Rino Rover with the exit button and re-establish the connection to the receiver. If this is not done subsequent data files will have missing information from the file header that may cause your load obs program you are about to write to run incorrectly. (d) Collect data continuously for 10 minutes. During this time manually record the Latitude, Longitude, and Height solution displayed on the TDS Recon several times during the 10 minute data collection. Try to record the exact solution at least 5 times during the data collection. Your team members may share the same data file (this may make it easier to check your results). Include your observations in each person s individual lab report under the heading Data collection. 2

3 (e) Move your observation file off of the TDS Recon so that you can use it on other computers and remove it from the Pocket PC to prevent file clutter. Return the GPS Backpack to my office or if I m not there you may return it to one of the students in WRW 412D. Plug in the battery chargers if its practical to do so. (f) After you have collected your data and verified that it is a reasonable data set (i.e., at least 10 minutes in length, at least 4 satellites all the time), go to the CORS web site and download the corresponding navigation file for the TXAU reference station. 3 Analysis Tasks In this assignment, you will have 2 shorter analysis tasks and 1 longer analysis task. You will want to get the first two analysis tasks done quickly (say in the first week) to give yourself more time to work on the position fix analysis task. A sample raw data file has been provided with results, so that you may check your work as you go. 3.1 Write a Matlab Function to Decode the Observation file Earlier in the course, you received and edited a function of the form nav record = load nav(measf ile) where measfile was a RINEX navigation file name (in quotes) and nav record was the output of a K by 37 array, where K is the number of GPS satellites (nominally 32). For this lab you will write your own function of the form: [meastime, P R record] = load obs(obsf ile) from scratch, where obsfile is the observation file name (in quotes) that you created in the previous section, and PR record is an N by K array of pseudorange measurements. K is the same number of GPS satellites defined in load nav (nominally 32), and N is the number of measurement epochs in the observation file. Initially this quantity will be unknown until the file has 3

4 been read. At each epoch, if there is a measurement for a PRN code, that measurement goes in the column number of the PRN code (e.g. PRN code 7 measurements go in column 7). If there is no measurement from that PRN for that measurement epoch, a value of zero goes in the column. meastime is an N by 2 array. The first column of the array is the time of each measurement epoch as reported in the observation file in seconds of the GPS week. The second column of the array is the GPS week number. This is somewhat wasteful since the GPS week is unlikely to change during the data collection, but we will not worry about that here. You will need to refer to the rinex v2.txt to decode the observation file. Table A2 will be particularly helpful in this task. You will have to handle the fact that the number of measurements may vary from epoch to epoch, and the fact that you don t intially know the number of measurement epochs in the observation file. Try to follow the same coding standards that were introduced in the load nav function. Turn in a printout of your function. Your code will be graded as part of the assignment. You may want to inspect the output of your function for the first few measurement epochs manually to make sure that it is working correctly. 3.2 Satellite Clock Corrections As has been discussed in class, even though the GPS satellites have very accurate clocks, they are not perfect and they still drift relative to GPS system time. If uncorrected, this timing error manifests itself as an error in the predicted pseudorange, since the satellite says the time is one value when in fact it is slightly different, and in that amount of time the satellite s position has moved. Even on the scale of nanoseconds, this timing error can have a noticeable effect on the quality of the GPS position fix. The receiver is able to remove the majority of this error through the GPS satellite clock correction coefficients, which are broadcast in the navigation message (see the Navigation Message handout posted with Homework 2) which is transmitted with the broadcast ephemeris. The coefficients provide a curve fit which removes most of the satellite clock drift over the four hour validity time of the broadcast ephemeris. The formula for the curve fit is as follows: clksv = a 0 + a 1 (t t 0 ) + a 2 (t t 0 ) 2 4

5 where t is the current time and t 0 is the epoch time of the clock ephemeris. The clock ephemeris is different from the broadcast ephemeris time known as t 0e (which is defined as element number 18 in Table 3 of the Navigation Message Handout). The clock ephemeris is built from the Year, Month, Day, Minute, Hour, Second format of the first 6 elements listed in Table 3 of the Navigation Message Handout. This will generally be close to t 0e but they are not the same argument! The units for t t 0 should be in seconds, so both t and t 0 should be converted to seconds of the current GPS week (if there is no possibility of week rollovers between t and t 0 ). Write a function: clksv = clk corr(t, sv, nav record) that takes a time (t, you specify the format, for example, I use MJD format), a satellite id (sv) and an input array (nav record), and calculates the satellite s associated clock offset at that time using the broadcast ephemeris given in nav record. Turn in a printout of your commented function with your lab report. 5

6 3.3 Compute position fixes for your data (a) Using your Garmin RINEX navigation and observation files that are valid for your 10 minute data collection, calculate position fixes using the linearization technique discussed in class. To initialize your position fix loop, use the average latitude, longitude, and altitude measurements that you made while recording your measurements. Convert these values to ECEF coordinates. (b) Taking the initialized XYZ position from part (a) as the true ECEF XYZ coordinates, make a plot of x, y, and z error versus time (use the subplot command to put 3 plots on a page). (c) On another page, plot 3-axis error ( δx 2 + δy 2 + δz 2 ) versus time and PDOP versus time (use the subplot command to put 2 plots on a page). Notes: (a) Now is where your earlier hard work pays off! Use the functions you have developed to parse and load the data that you will need. You will need to load up only the measurements that are valid at each measurement sample. In other words, do not process zero entries in your measurement array. (b) Coding tip: even though you will eventually loop over all the measurements in your file, don t start trying to do this. Just work with one measurement time epoch and try to get a single position fix for it. Once you have that working, it will be a lot easier to loop over the set of all measurements. (c) Important: Rhino Rover version does not reference WAAS satellite data correctly. As a result PRN 122 corresponding to Inmarsat AOR-W may appear in the obsfile as PRN 22. Since this satellite is in geostationary orbit it will almost always be present in your data. Your program will then associate the ephemeris for the real PRN 22 with the geostationary satellite. Until this problem is fixed it is probably safest to find a way to skip over PRN 22 in your program. You may want to make this feature easily removable as the problem will be fixed in the future. 6

7 (d) A road map for your Matlab code might look something like this: (1) use load nav to read the navigation file. (2) use load obs to read the pseudorange measuremets from the observation file. (3) Compute the XYZ ECEF values as an initial guess for the position fix loop (may be entered manually). (4) begin loop to read over all observation times. (5) begin loop to iterate on a measurement sample. (6) begin loop to read over all available satellites at that sample (nsat). (7) compute satellite position at transmission time as given by bcast. (see item (c) below for additional notes!) (8) compute H(nsat) and ρ(nsat) matrix components for this observation. (9) Correct ρ measurements for GPS satellite clock correction (from clk corr). (10) end satellite loop. (11) compute the least squares estimate of receiver position and clock correction. (12) adjust position solution by x. (13) test for convergence ( x small). (14) end measurement epoch loop. (15) compute the P DOP. (16) store the values of time, x, clock bias, and P DOP. (17) end observation loop (18) make plots 7

8 (e) When you use your working bcast function in this problem, you will need to incorporate a concept that we discussed in class. We need to compute the locations of the GPS satellites at the signal Transmission Time, but the times given in the RINEX observation file are for the signal Reception Time at the GPS receiver. Thus, we need to back up the satellites in time to account for the time it takes for the signal to leave the satellites and arrive at the receiver. Thus, you will want a loop in your Matlab script that looks something like this: % Iterate 3 times % Tr= time of signal reception (days) % Tt=Tr-dt = time of signal transmission (days) Tr=time(t); % MJD format dt=0; % initialize [xs,clksv] = bcast(tr-dt,b,eph,toc,sv); range = norm(xs-x 0); % x 0 is initial position guess for q = 1:3 % Earth rotation during the signal propagation delt = range/c; theta = e-11 * delt; ct = cos(theta); st = sin(theta); rot = [ct -st 0; st ct 0; 0 0 1]; % correct for transmission time due to sv velocity dt = delt/86400; % dt calculated in days [xs,clksv] = bcast(tr-dt,b,eph,toc,sv); % correct for satellite position due to the Earth s rotation xs = xs *rot ; range = norm(xs-x 0); end Notice how both the effects of satellite motion and Earth rotation are removed during the signal travel time. 8

9 3.4 Discuss plots Make comments about the position error plots you obtained for your Garmin data collection. (a) Based on what you have learned about the pseudorange UERE (User Equivalent Range Error) and Dilution of Precision (DOP), what 3-axis error would you normally expect for your position fixes? (b) If the error in the Garmin data collection is larger than expected, can you explain why this might be the case? (Hint: error is listed in quotes for a reason.) 9

Global Navigation Satellite Systems II

Global Navigation Satellite Systems II Global Navigation Satellite Systems II AERO4701 Space Engineering 3 Week 4 Last Week Examined the problem of satellite coverage and constellation design Looked at the GPS satellite constellation Overview

More information

Integration of GPS Backpack Data Collection System into ASE 272N

Integration of GPS Backpack Data Collection System into ASE 272N Integration of GPS Backpack Data Collection System into ASE 272N Thomas M. Campbell The University of Texas at Austin Austin, TX Collection of GPS data by ASE272N students has been accomplished in the

More information

UNIT 1 - introduction to GPS

UNIT 1 - introduction to GPS UNIT 1 - introduction to GPS 1. GPS SIGNAL Each GPS satellite transmit two signal for positioning purposes: L1 signal (carrier frequency of 1,575.42 MHz). Modulated onto the L1 carrier are two pseudorandom

More information

GPS Milestones, cont. GPS Milestones. The Global Positioning Sytem, Part 1 10/10/2017. M. Helper, GEO 327G/386G, UT Austin 1. US GPS Facts of Note

GPS Milestones, cont. GPS Milestones. The Global Positioning Sytem, Part 1 10/10/2017. M. Helper, GEO 327G/386G, UT Austin 1. US GPS Facts of Note The Global Positioning System US GPS Facts of Note DoD navigation system First launch on 22 Feb 1978, fully operational in 1994 ~$15 billion (?) invested to date 24 (+/-) Earth-orbiting satellites (SVs)

More information

Effect of Quasi Zenith Satellite (QZS) on GPS Positioning

Effect of Quasi Zenith Satellite (QZS) on GPS Positioning Effect of Quasi Zenith Satellite (QZS) on GPS ing Tomoji Takasu 1, Takuji Ebinuma 2, and Akio Yasuda 3 Laboratory of Satellite Navigation, Tokyo University of Marine Science and Technology 1 (Tel: +81-5245-7365,

More information

Every GNSS receiver processes

Every GNSS receiver processes GNSS Solutions: Code Tracking & Pseudoranges GNSS Solutions is a regular column featuring questions and answers about technical aspects of GNSS. Readers are invited to send their questions to the columnist,

More information

FieldGenius Technical Notes GPS Terminology

FieldGenius Technical Notes GPS Terminology FieldGenius Technical Notes GPS Terminology Almanac A set of Keplerian orbital parameters which allow the satellite positions to be predicted into the future. Ambiguity An integer value of the number of

More information

The Global Positioning System

The Global Positioning System The Global Positioning System 5-1 US GPS Facts of Note DoD navigation system First launch on 22 Feb 1978, fully operational in 1994 ~$15 billion (?) invested to date 24 (+/-) Earth-orbiting satellites

More information

NR402 GIS Applications in Natural Resources

NR402 GIS Applications in Natural Resources NR402 GIS Applications in Natural Resources Lesson 5 GPS/GIS integration Global Positioning System (GPS)..a global navigation system that everyone can use What is GPS? How does it work? How accurate is

More information

t =1 Transmitter #2 Figure 1-1 One Way Ranging Schematic

t =1 Transmitter #2 Figure 1-1 One Way Ranging Schematic 1.0 Introduction OpenSource GPS is open source software that runs a GPS receiver based on the Zarlink GP2015 / GP2021 front end and digital processing chipset. It is a fully functional GPS receiver which

More information

Appendix D Brief GPS Overview

Appendix D Brief GPS Overview Appendix D Brief GPS Overview Global Positioning System (GPS) Theory What is GPS? The Global Positioning System (GPS) is a satellite-based navigation system, providing position information, accurate to

More information

An Introduction to GPS

An Introduction to GPS An Introduction to GPS You are here The GPS system: what is GPS Principles of GPS: how does it work Processing of GPS: getting precise results Yellowstone deformation: an example What is GPS? System to

More information

ECE 174 Computer Assignment #2 Due Thursday 12/6/2012 GLOBAL POSITIONING SYSTEM (GPS) ALGORITHM

ECE 174 Computer Assignment #2 Due Thursday 12/6/2012 GLOBAL POSITIONING SYSTEM (GPS) ALGORITHM ECE 174 Computer Assignment #2 Due Thursday 12/6/2012 GLOBAL POSITIONING SYSTEM (GPS) ALGORITHM Overview By utilizing measurements of the so-called pseudorange between an object and each of several earth

More information

Outlier-Robust Estimation of GPS Satellite Clock Offsets

Outlier-Robust Estimation of GPS Satellite Clock Offsets Outlier-Robust Estimation of GPS Satellite Clock Offsets Simo Martikainen, Robert Piche and Simo Ali-Löytty Tampere University of Technology. Tampere, Finland Email: simo.martikainen@tut.fi Abstract A

More information

Principles of the Global Positioning System Lecture 19

Principles of the Global Positioning System Lecture 19 12.540 Principles of the Global Positioning System Lecture 19 Prof. Thomas Herring http://geoweb.mit.edu/~tah/12.540 GPS Models and processing Summary: Finish up modeling aspects Rank deficiencies Processing

More information

Global Positioning Systems (GPS) Trails: the achilles heel of mapping from the air / satellites

Global Positioning Systems (GPS) Trails: the achilles heel of mapping from the air / satellites Global Positioning Systems (GPS) Trails: the achilles heel of mapping from the air / satellites Google maps updated regularly by local users using GPS Also: http://openstreetmaps.org GPS applications

More information

A GLONASS Observation Message Compatible With The Compact Measurement Record Format

A GLONASS Observation Message Compatible With The Compact Measurement Record Format A GLONASS Observation Message Compatible With The Compact Measurement Record Format Leica Geosystems AG 1 Introduction Real-time kinematic (RTK) Global Navigation Satellite System (GNSS) positioning has

More information

Worst-Case GPS Constellation for Testing Navigation at Geosynchronous Orbit for GOES-R

Worst-Case GPS Constellation for Testing Navigation at Geosynchronous Orbit for GOES-R Worst-Case GPS Constellation for Testing Navigation at Geosynchronous Orbit for GOES-R Kristin Larson, Dave Gaylor, and Stephen Winkler Emergent Space Technologies and Lockheed Martin Space Systems 36

More information

GNSS & Coordinate Systems

GNSS & Coordinate Systems GNSS & Coordinate Systems Matthew McAdam, Marcelo Santos University of New Brunswick, Department of Geodesy and Geomatics Engineering, Fredericton, NB May 29, 2012 Santos, 2004 msantos@unb.ca 1 GNSS GNSS

More information

An Empirical Solar Radiation Pressure Model for Autonomous GNSS Orbit Prediction

An Empirical Solar Radiation Pressure Model for Autonomous GNSS Orbit Prediction Myrtle Beach, South Carolina 24-26.4.2012 An Empirical Solar Radiation Pressure Model for Autonomous GNSS Orbit Prediction Juha Ala-Luhtala, Mari Seppänen & Robert Piché Tampere University of Technology

More information

The Global Positioning System

The Global Positioning System The Global Positioning System Principles of GPS positioning GPS signal and observables Errors and corrections Processing GPS data GPS measurement strategies Precision and accuracy E. Calais Purdue University

More information

User Guide. Pseudorange & Phase Post-Processor. Version /03/02. Prepared by. Dr C J Hill Institute of Engineering Surveying and Space Geodesy

User Guide. Pseudorange & Phase Post-Processor. Version /03/02. Prepared by. Dr C J Hill Institute of Engineering Surveying and Space Geodesy P4 Version 2.0.0 10/03/02 Prepared by Dr C J Hill Institute of Engineering Surveying and Space Geodesy Pseudorange & Phase Contact gringo@nottingham.ac.uk for further information, or visit www.nottingham.ac.uk/iessg/gringo

More information

Demonstrations of Multi-Constellation Advanced RAIM for Vertical Guidance using GPS and GLONASS Signals

Demonstrations of Multi-Constellation Advanced RAIM for Vertical Guidance using GPS and GLONASS Signals Demonstrations of Multi-Constellation Advanced RAIM for Vertical Guidance using GPS and GLONASS Signals Myungjun Choi, Juan Blanch, Stanford University Dennis Akos, University of Colorado Boulder Liang

More information

TEST YOUR SATELLITE NAVIGATION PERFORMANCE ON YOUR ANDROID DEVICE GLOSSARY

TEST YOUR SATELLITE NAVIGATION PERFORMANCE ON YOUR ANDROID DEVICE GLOSSARY TEST YOUR SATELLITE NAVIGATION PERFORMANCE ON YOUR ANDROID DEVICE GLOSSARY THE GLOSSARY This glossary aims to clarify and explain the acronyms used in GNSS and satellite navigation performance testing

More information

DECODING OF SIRF BINARY PROTOCOL

DECODING OF SIRF BINARY PROTOCOL ARTIFICIAL SATELLITES, Vol. 46, No. 4 2011 DOI: 10.2478/v10018-012-0005-y DECODING OF SIRF BINARY PROTOCOL Bartłomiej Oszczak, Krzysztof Serżysko University of Warmia and Mazury in Olsztyn Chair of Satellite

More information

Modern Navigation. Thomas Herring

Modern Navigation. Thomas Herring 12.215 Modern Navigation Thomas Herring Summary of Last class Satellite Orbits Treat the basic description and dynamics of satellite orbits Major perturbations on GPS satellite orbits Sources of orbit

More information

Global Navigation Satellite Systems (GNSS)Part I EE 570: Location and Navigation

Global Navigation Satellite Systems (GNSS)Part I EE 570: Location and Navigation Lecture Global Navigation Satellite Systems (GNSS)Part I EE 570: Location and Navigation Lecture Notes Update on April 25, 2016 Aly El-Osery and Kevin Wedeward, Electrical Engineering Dept., New Mexico

More information

GPS and Recent Alternatives for Localisation. Dr. Thierry Peynot Australian Centre for Field Robotics The University of Sydney

GPS and Recent Alternatives for Localisation. Dr. Thierry Peynot Australian Centre for Field Robotics The University of Sydney GPS and Recent Alternatives for Localisation Dr. Thierry Peynot Australian Centre for Field Robotics The University of Sydney Global Positioning System (GPS) All-weather and continuous signal system designed

More information

GPS Glossary Written by Carl Carter SiRF Technology 2005

GPS Glossary Written by Carl Carter SiRF Technology 2005 GPS Glossary Written by Carl Carter SiRF Technology 2005 This glossary provides supplementary information for students of GPS Fundamentals. While many of the terms can have other definitions from those

More information

Wednesday AM: (Doug) 2. PS and Long Period Signals

Wednesday AM: (Doug) 2. PS and Long Period Signals Wednesday AM: (Doug) 2 PS and Long Period Signals What is Colorado famous for? 32 satellites 12 Early on in the world of science synchronization of clocks was found to be important. consider Paris: puffs

More information

ESTIMATION OF IONOSPHERIC DELAY FOR SINGLE AND DUAL FREQUENCY GPS RECEIVERS: A COMPARISON

ESTIMATION OF IONOSPHERIC DELAY FOR SINGLE AND DUAL FREQUENCY GPS RECEIVERS: A COMPARISON ESTMATON OF ONOSPHERC DELAY FOR SNGLE AND DUAL FREQUENCY GPS RECEVERS: A COMPARSON K. Durga Rao, Dr. V B S Srilatha ndira Dutt Dept. of ECE, GTAM UNVERSTY Abstract: Global Positioning System is the emerging

More information

Lecture 2 Satellite orbits and clocks computation and accuracy

Lecture 2 Satellite orbits and clocks computation and accuracy Lecture 2 Satellite orbits and clocks computation and accuracy Contact: jaume.sanz@upc.edu Web site: http://www.gage.upc.edu 1 Authorship statement The authorship of this material and the Intellectual

More information

GLOBAL POSITIONING SYSTEMS. Knowing where and when

GLOBAL POSITIONING SYSTEMS. Knowing where and when GLOBAL POSITIONING SYSTEMS Knowing where and when Overview Continuous position fixes Worldwide coverage Latitude/Longitude/Height Centimeter accuracy Accurate time Feasibility studies begun in 1960 s.

More information

GPS: The Basics. Darrell R. Dean, Jr. Civil and Environmental Engineering West Virginia University. Expected Learning Outcomes for GPS

GPS: The Basics. Darrell R. Dean, Jr. Civil and Environmental Engineering West Virginia University. Expected Learning Outcomes for GPS GPS: The Basics Darrell R. Dean, Jr. Civil and Environmental Engineering West Virginia University Expected Learning Outcomes for GPS Explain the acronym GPS Name 3 important tdt dates in history of GPS

More information

Math 215 Project 1 (25 pts) : Using Linear Algebra to solve GPS problem

Math 215 Project 1 (25 pts) : Using Linear Algebra to solve GPS problem Due 11:55pm Fri. Sept. 28 NAME(S): Math 215 Project 1 (25 pts) : Using Linear Algebra to solve GPS problem 1 Introduction The age old question, Where in the world am I? can easily be solved nowadays by

More information

THE GPS SATELLITE AND PAYLOAD

THE GPS SATELLITE AND PAYLOAD THE GPS SATELLITE AND PAYLOAD Andrew Codik and Robert A. Gronlund Rockwell International Corporation Satellite Systems Division 12214 Lakewood Boulevard Downey, California, USA 90241 ABSTRACT The NAVSTAR/Global

More information

The GLOBAL POSITIONING SYSTEM James R. Clynch February 2006

The GLOBAL POSITIONING SYSTEM James R. Clynch February 2006 The GLOBAL POSITIONING SYSTEM James R. Clynch February 2006 I. Introduction What is GPS The Global Positioning System, or GPS, is a satellite based navigation system developed by the United States Defense

More information

Introduction to Geographic Information Science. Last Lecture. Today s Outline. Geography 4103 / GNSS/GPS Technology

Introduction to Geographic Information Science. Last Lecture. Today s Outline. Geography 4103 / GNSS/GPS Technology Geography 4103 / 5103 Introduction to Geographic Information Science GNSS/GPS Technology Last Lecture Geoids Ellipsoid Datum Projection Basics Today s Outline GNSS technology How satellite based navigation

More information

UNITED NATIONS UNIVERSITY Institute for Environment & Human Security (UNU-EHS) Bonn, Germany

UNITED NATIONS UNIVERSITY Institute for Environment & Human Security (UNU-EHS) Bonn, Germany UNITED NATIONS UNIVERSITY Institute for Environment & Human Security (UNU-EHS) Bonn, Germany Introduction to GPS technology Prof. Dr. Jörg Szarzynski Education Programme Director Head of Section EduSphere

More information

EE 570: Location and Navigation

EE 570: Location and Navigation EE 570: Location and Navigation Global Navigation Satellite Systems (GNSS) Part I Aly El-Osery Kevin Wedeward Electrical Engineering Department, New Mexico Tech Socorro, New Mexico, USA In Collaboration

More information

GPS PERFORMANCE EVALUATION OF THE HUAWEI MATE 9 WITH DIFFERENT ANTENNA CONFIGURATIONS

GPS PERFORMANCE EVALUATION OF THE HUAWEI MATE 9 WITH DIFFERENT ANTENNA CONFIGURATIONS GPS PERFORMANCE EVALUATION OF THE HUAWEI MATE 9 WITH DIFFERENT ANTENNA CONFIGURATIONS AND P10 IN THE FIELD Gérard Lachapelle & Research Team PLAN Group, University of Calgary (http://plan.geomatics.ucalgary.ca)

More information

GPS Technical Overview N5TWP NOV08. How Can GPS Mislead

GPS Technical Overview N5TWP NOV08. How Can GPS Mislead GPS Technical Overview How Can GPS Mislead 1 Objectives Components of GPS Satellite Acquisition Process Position Determination How can GPS Mislead 2 Components of GPS Control Segment Series of monitoring

More information

GPS Errors. Figure 1. Four satellites are required to determine a GPS position.

GPS Errors. Figure 1. Four satellites are required to determine a GPS position. Expl ai ni nggps:thegl obalposi t i oni ngsyst em since a minimum of four satellites is required to calculate a position (Fig 1). However, many newer GPS receivers are equipped to receive up to 12 satellite

More information

Principles of the Global Positioning System Lecture 08

Principles of the Global Positioning System Lecture 08 12.540 Principles of the Global Positioning System Lecture 08 Prof. Thomas Herring http://geoweb.mit.edu/~tah/12.540 Summary Review: Examined methods for measuring distances Examined GPS codes that allow

More information

Modelling GPS Observables for Time Transfer

Modelling GPS Observables for Time Transfer Modelling GPS Observables for Time Transfer Marek Ziebart Department of Geomatic Engineering University College London Presentation structure Overview of GPS Time frames in GPS Introduction to GPS observables

More information

Global Positioning System: what it is and how we use it for measuring the earth s movement. May 5, 2009

Global Positioning System: what it is and how we use it for measuring the earth s movement. May 5, 2009 Global Positioning System: what it is and how we use it for measuring the earth s movement. May 5, 2009 References Lectures from K. Larson s Introduction to GNSS http://www.colorado.edu/engineering/asen/

More information

Primer on GPS Operations

Primer on GPS Operations MP Rugged Wireless Modem Primer on GPS Operations 2130313 Rev 1.0 Cover illustration by Emma Jantz-Lee (age 11). An Introduction to GPS This primer is intended to provide the foundation for understanding

More information

PRINCIPLES AND FUNCTIONING OF GPS/ DGPS /ETS ER A. K. ATABUDHI, ORSAC

PRINCIPLES AND FUNCTIONING OF GPS/ DGPS /ETS ER A. K. ATABUDHI, ORSAC PRINCIPLES AND FUNCTIONING OF GPS/ DGPS /ETS ER A. K. ATABUDHI, ORSAC GPS GPS, which stands for Global Positioning System, is the only system today able to show you your exact position on the Earth anytime,

More information

Cycle Slip Detection in Single Frequency GPS Carrier Phase Observations Using Expected Doppler Shift

Cycle Slip Detection in Single Frequency GPS Carrier Phase Observations Using Expected Doppler Shift Nordic Journal of Surveying and Real Estate Research Volume, Number, 4 Nordic Journal of Surveying and Real Estate Research : (4) 63 79 submitted on April, 3 revised on 4 September, 3 accepted on October,

More information

Spoofing GPS Receiver Clock Offset of Phasor Measurement Units 1

Spoofing GPS Receiver Clock Offset of Phasor Measurement Units 1 Spoofing GPS Receiver Clock Offset of Phasor Measurement Units 1 Xichen Jiang (in collaboration with J. Zhang, B. J. Harding, J. J. Makela, and A. D. Domínguez-García) Department of Electrical and Computer

More information

Sources of Error in Satellite Navigation Positioning

Sources of Error in Satellite Navigation Positioning http://www.transnav.eu the International Journal on Marine Navigation and Safety of Sea Transportation Volume 11 Number 3 September 2017 DOI: 10.12716/1001.11.03.04 Sources of Error in Satellite Navigation

More information

Principles of the Global Positioning System Lecture 20" Processing Software" Primary research programs"

Principles of the Global Positioning System Lecture 20 Processing Software Primary research programs 12.540 Principles of the Global Positioning System Lecture 20" Prof. Thomas Herring" Room 54-820A; 253-5941" tah@mit.edu" http://geoweb.mit.edu/~tah/12.540 " Processing Software" Examine basic features

More information

Lab S-3: Beamforming with Phasors. N r k. is the time shift applied to r k

Lab S-3: Beamforming with Phasors. N r k. is the time shift applied to r k DSP First, 2e Signal Processing First Lab S-3: Beamforming with Phasors Pre-Lab: Read the Pre-Lab and do all the exercises in the Pre-Lab section prior to attending lab. Verification: The Exercise section

More information

Introduction to GNSS

Introduction to GNSS Introduction to GNSS Dimitrios Bolkas, Ph.D. Department of Surveying Engineering, Pennsylvania State University, Wilkes Barre Campus PSLS Surveyor s Conference January 21-24, 2018 Hershey, PA Global Navigation

More information

NMEA2000- Par PGN. Mandatory Request, Command, or Acknowledge Group Function Receive/Transmit PGN's

NMEA2000- Par PGN. Mandatory Request, Command, or Acknowledge Group Function Receive/Transmit PGN's PGN Number Category Notes - Datum Local geodetic datum and datum offsets from a reference datum. T The Request / Command / Acknowledge Group type of 126208 - NMEA - Request function is defined by first

More information

Using RTK GNSS Wisely

Using RTK GNSS Wisely Using RTK GNSS Wisely February 017 Autonomous Positioning Differential Positioning Concept: Detect and cancel identical errors with simultaneous observation. F + E = G + E 1 Static & RTK Computations Static

More information

Study and analysis of Differential GNSS and Precise Point Positioning

Study and analysis of Differential GNSS and Precise Point Positioning IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, Volume 9, Issue 2 Ver. I (Mar Apr. 2014), PP 53-59 Study and analysis of Differential GNSS and Precise

More information

Introduction. Global Positioning System. GPS - Intro. Space Segment. GPS - Intro. Space Segment - Contd..

Introduction. Global Positioning System. GPS - Intro. Space Segment. GPS - Intro. Space Segment - Contd.. Introduction Global Positioning System Prof. D. Nagesh Kumar Dept. of Civil Engg., IISc, Bangalore 560 012, India URL: http://www.civil.iisc.ernet.in/~nagesh GPS is funded and controlled by U. S. Department

More information

Compact Data Transmission Standard for High-Precision GPS

Compact Data Transmission Standard for High-Precision GPS Compact Data Transmission Standard for High-Precision GPS Dr. Nicholas C. Talbot Trimble Navigation BIOGRAPHY Nicholas Talbot graduated from the Royal Melbourne Institute of Technology, Australia, with

More information

Designing Information Devices and Systems I Spring 2019 Homework 12

Designing Information Devices and Systems I Spring 2019 Homework 12 Last Updated: 9-4-9 :34 EECS 6A Designing Information Devices and Systems I Spring 9 Homework This homework is due April 6, 9, at 3:59. Self-grades are due April 3, 9, at 3:59. Submission Format Your homework

More information

CHAPTER 2 GPS GEODESY. Estelar. The science of geodesy is concerned with the earth by quantitatively

CHAPTER 2 GPS GEODESY. Estelar. The science of geodesy is concerned with the earth by quantitatively CHAPTER 2 GPS GEODESY 2.1. INTRODUCTION The science of geodesy is concerned with the earth by quantitatively describing the coordinates of each point on the surface in a global or local coordinate system.

More information

TDS Ranger Survey Pro CE Version RTK Base on known Control Point. RTK Rover - Localization with Control Points.

TDS Ranger Survey Pro CE Version RTK Base on known Control Point. RTK Rover - Localization with Control Points. TDS Ranger Survey Pro CE Version 2.1.8 RTK Base on known Control Point. RTK Rover - Localization with Control Points. Pre-load control Coordinates and appropriate NGS Geoid 99/96 data files into the Ranger

More information

ANALYSIS OF GPS SATELLITE OBSERVABILITY OVER THE INDIAN SOUTHERN REGION

ANALYSIS OF GPS SATELLITE OBSERVABILITY OVER THE INDIAN SOUTHERN REGION TJPRC: International Journal of Signal Processing Systems (TJPRC: IJSPS) Vol. 1, Issue 2, Dec 2017, 1-14 TJPRC Pvt. Ltd. ANALYSIS OF GPS SATELLITE OBSERVABILITY OVER THE INDIAN SOUTHERN REGION ANU SREE

More information

Global Positioning System (GPS) Positioning Errors During Ionospheric Scintillation Event. Keywords: GPS; scintillation; positioning error

Global Positioning System (GPS) Positioning Errors During Ionospheric Scintillation Event. Keywords: GPS; scintillation; positioning error Jurnal Teknologi Full paper Global Positioning System (GPS) Positioning Errors During Ionospheric Scintillation Event Y. H. Ho a*, S. Abdullah b, M. H. Mokhtar b a Faculty of Electronic and Computer Engineering,

More information

The Indian Regional Navigation. First Position Fix with IRNSS. Successful Proof-of-Concept Demonstration

The Indian Regional Navigation. First Position Fix with IRNSS. Successful Proof-of-Concept Demonstration Successful Proof-of-Concept Demonstration First Position Fix with IRNSS A. S. GANESHAN, S. C. RATNAKARA, NIRMALA SRINIVASAN, BABU RAJARAM, NEETHA TIRMAL, KARTIK ANBALAGAN INDIAN SPACE RESEARCH ORGANISATION

More information

Bernese GPS Software 4.2

Bernese GPS Software 4.2 Bernese GPS Software 4.2 Introduction Signal Processing Geodetic Use Details of modules Bernese GPS Software 4.2 Highest Accuracy GPS Surveys Research and Education Big Permanent GPS arrays Commercial

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

Technical Specifications Document. for. Satellite-Based Augmentation System (SBAS) Testbed

Technical Specifications Document. for. Satellite-Based Augmentation System (SBAS) Testbed Technical Specifications Document for Satellite-Based Augmentation System (SBAS) Testbed Revision 3 13 June 2017 Table of Contents Acronym Definitions... 3 1. Introduction... 4 2. SBAS Testbed Realisation...

More information

GPS Position Sensor PS-2175

GPS Position Sensor PS-2175 In s tr u c ti o n M a n u a l 012-09919A GPS Position Sensor PS-2175! Table of Contents Contents Introduction........................................................... 3 Theory of Operation....................................................

More information

What is a GPS How does GPS work? GPS Segments GPS P osition Position Position Accuracy Accuracy Accuracy GPS A pplications Applications Applications

What is a GPS How does GPS work? GPS Segments GPS P osition Position Position Accuracy Accuracy Accuracy GPS A pplications Applications Applications What is GPS? What is a GPS How does GPS work? GPS Segments GPS Position Accuracy GPS Applications What is GPS? The Global Positioning System (GPS) is a precise worldwide radio-navigation system, and consists

More information

Basics of Satellite Navigation an Elementary Introduction Prof. Dr. Bernhard Hofmann-Wellenhof Graz, University of Technology, Austria

Basics of Satellite Navigation an Elementary Introduction Prof. Dr. Bernhard Hofmann-Wellenhof Graz, University of Technology, Austria Basics of Satellite Navigation an Elementary Introduction Prof. Dr. Bernhard Hofmann-Wellenhof Graz, University of Technology, Austria CONCEPT OF GPS Prof. Dr. Bernhard Hofmann-Wellenhof Graz, University

More information

Introduction to GNSS

Introduction to GNSS Introduction to GNSS Dimitrios Bolkas, Ph.D. Department of Surveying Engineering, Pennsylvania State University, Wilkes Barre Campus PSLS Surveyor s Conference Hershey, PA Global Navigation Satellite System

More information

III Satellite Ephemeris and Coordinates

III Satellite Ephemeris and Coordinates III Satellite Ephemeris and Coordinates Exercise III.1 Orbital Parameters Consider a satellite with the following orbital parameters orbit semi-major axis: A = 26559755m; orbit eccentricity: e = 0.017545;

More information

Korean WA-DGNSS User Segment Software Design

Korean WA-DGNSS User Segment Software Design http://www.transnav.eu the International Journal on Marine Navigation and Safet of Sea Transportation Volume 7 Number 1 March 2013 DOI: 10.12716/1001.07.01.08 Korean WA-DGNSS User Segment Software Design

More information

Fundamentals of GPS Navigation

Fundamentals of GPS Navigation Fundamentals of GPS Navigation Kiril Alexiev 1 /76 2 /76 At the traditional January media briefing in Paris (January 18, 2017), European Space Agency (ESA) General Director Jan Woerner explained the knowns

More information

NMEA 2000 Parameter Group Numbers and Description as of August 2007 NMEA 2000 DB Ver

NMEA 2000 Parameter Group Numbers and Description as of August 2007 NMEA 2000 DB Ver Category General & or Mandatory ISO Acknowledgment This message is provided by ISO 11783 for a handshake mechanism between transmitting and receiving devices. This message is the possible response to acknowledge

More information

GPS Error and Biases

GPS Error and Biases Component-I(A) - Personal Details Role Name Affiliation Principal Investigator Prof.MasoodAhsanSiddiqui Department of Geography, JamiaMilliaIslamia, New Delhi Paper Coordinator, if any Dr. Mahaveer Punia

More information

SX-NSR 2.0 A Multi-frequency and Multi-sensor Software Receiver with a Quad-band RF Front End

SX-NSR 2.0 A Multi-frequency and Multi-sensor Software Receiver with a Quad-band RF Front End SX-NSR 2.0 A Multi-frequency and Multi-sensor Software Receiver with a Quad-band RF Front End - with its use for Reflectometry - N. Falk, T. Hartmann, H. Kern, B. Riedl, T. Pany, R. Wolf, J.Winkel, IFEN

More information

Hitchhiker s s Guide Global Position System. Global Position System

Hitchhiker s s Guide Global Position System. Global Position System Hitchhiker s s Guide Global Position System Myles Sutherland Craig Greenwald Mike Shaw John Rogers Hitchhiker s s Guide Global Position System (GPS) Myles Sutherland - ESRI Craig Greenwald ESRI John Rogers

More information

GPS Global Positioning System

GPS Global Positioning System GPS Global Positioning System 10.04.2012 1 Agenda What is GPS? Basic consept History GPS receivers How they work Comunication Message format Satellite frequencies Sources of GPS signal errors 10.04.2012

More information

EUROPEAN GNSS (GALILEO) INITIAL SERVICES NAVIGATION SOLUTIONS POWERED BY E U R O P E OPEN SERVICE QUARTERLY PERFORMANCE REPORT

EUROPEAN GNSS (GALILEO) INITIAL SERVICES NAVIGATION SOLUTIONS POWERED BY E U R O P E OPEN SERVICE QUARTERLY PERFORMANCE REPORT NAVIGATION SOLUTIONS POWERED BY E U R O P E EUROPEAN GNSS (GALILEO) INITIAL SERVICES OPEN SERVICE QUARTERLY PERFORMANCE REPORT JANUARY - MARCH 2018 TABLE OF CONTENTS 1 INTRODUCTION... 1 2 EXECUTIVE SUMMARY...

More information

GNSS: orbits, signals, and methods

GNSS: orbits, signals, and methods Part I GNSS: orbits, signals, and methods 1 GNSS ground and space segments Global Navigation Satellite Systems (GNSS) at the time of writing comprise four systems, two of which are fully operational and

More information

FieldGenius Technical Notes GPS Differential Corrections

FieldGenius Technical Notes GPS Differential Corrections FieldGenius Technical tes GPS Differential Corrections Introduction The accuracy requirement of survey grade or mapping grade GPS applications for real time positioning requires the use of differential

More information

Posicionamento por ponto com. Posicionamento por satélite UNESP PP 2017 Prof. Galera

Posicionamento por ponto com. Posicionamento por satélite UNESP PP 2017 Prof. Galera Posicionamento por ponto com multiconstelação GNSS Posicionamento por satélite UNESP PP 2017 Prof. Galera Single-GNSS Observation Equations Considering j = 1; : : : ; f S the frequencies of a certain GNSS

More information

Line and polygon features can be created via on-screen digitizing.

Line and polygon features can be created via on-screen digitizing. This module explains how GPS works, sources of error, and error correction using real time or post processing differential correction. Cost and accuracy of different grades of GPS units are also part of

More information

Resection. We can measure direction in the real world! Lecture 10: Position Determination. Resection Example: Isola, Slovenia. Professor Keith Clarke

Resection. We can measure direction in the real world! Lecture 10: Position Determination. Resection Example: Isola, Slovenia. Professor Keith Clarke Geography 12: Maps and Spatial Reasoning Lecture 10: Position Determination We can measure direction in the real world! Professor Keith Clarke Resection Resection Example: Isola, Slovenia Back azimuth

More information

12.S56 GPS: Where Are You? Fall 2008

12.S56 GPS: Where Are You? Fall 2008 MIT OpenCourseWare http://ocw.mit.edu 12.S56 GPS: Where Are You? Fall 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. 12S56 GPS Basics of Handheld

More information

A SOFTWARE DEFINED RADIO EXPERIMENTAL PLATFORM FOR GPS/GNSS SIGNAL RECEPTION ANALYSIS. A Thesis LINGJUN PU

A SOFTWARE DEFINED RADIO EXPERIMENTAL PLATFORM FOR GPS/GNSS SIGNAL RECEPTION ANALYSIS. A Thesis LINGJUN PU A SOFTWARE DEFINED RADIO EXPERIMENTAL PLATFORM FOR GPS/GNSS SIGNAL RECEPTION ANALYSIS A Thesis by LINGJUN PU Submitted to the Office of Graduate and Professional Studies of Texas A&M University in partial

More information

Introduction to the Global Positioning System

Introduction to the Global Positioning System GPS for Fire Management - 2004 Introduction to the Global Positioning System Pre-Work Pre-Work Objectives Describe at least three sources of GPS signal error, and identify ways to mitigate or reduce those

More information

GPS POSITIONING GUIDE

GPS POSITIONING GUIDE GPS POSITIONING GUIDE (July 1993) Third printing July 1995 This product is available from: Natural Resources Canada* Geomatics Canada Geodetic Survey Division Information Services 615 Booth Street Ottawa,

More information

Integer Ambiguity Resolution for Precise Point Positioning Patrick Henkel

Integer Ambiguity Resolution for Precise Point Positioning Patrick Henkel Integer Ambiguity Resolution for Precise Point Positioning Patrick Henkel Overview Introduction Sequential Best-Integer Equivariant Estimation Multi-frequency code carrier linear combinations Galileo:

More information

EXPERIMENTAL ONE AXIS ATTITUDE DETERMINATION USING GPS CARRIER PHASE MEASUREMENTS

EXPERIMENTAL ONE AXIS ATTITUDE DETERMINATION USING GPS CARRIER PHASE MEASUREMENTS EXPERIMENTAL ONE AXIS ATTITUDE DETERMINATION USING GPS CARRIER PHASE MEASUREMENTS Arcélio Costa Louro INPE - National Institute for Space Research E-mail: aclouro@dss.inpe.br Roberto Vieira da Fonseca

More information

Configuring the Global Navigation Satellite System

Configuring the Global Navigation Satellite System Configuring the Global Navigation Satellite System Effective Cisco IOS-XE Release 3.17, the Cisco ASR-920-12SZ-IM router uses a satellite receiver, also called the global navigation satellite system (GNSS),

More information

Designing Information Devices and Systems I Fall 2016 Babak Ayazifar, Vladimir Stojanovic Homework 11

Designing Information Devices and Systems I Fall 2016 Babak Ayazifar, Vladimir Stojanovic Homework 11 EECS 16A Designing Information Devices and Systems I Fall 2016 Babak Ayazifar, Vladimir Stojanovic Homework 11 This homework is due Nov 15, 2016, at 1PM. 1. Homework process and study group Who else did

More information

Analysis on GNSS Receiver with the Principles of Signal and Information

Analysis on GNSS Receiver with the Principles of Signal and Information Analysis on GNSS Receiver with the Principles of Signal and Information Lishu Guo 1,2, Xuyou Li 1, Xiaoying Kong 2 1. College of Automation, Harbin Engineering University, Harbin, China 2. School of Computing

More information

NJDEP GPS Data Collection Standards for GIS Data Development

NJDEP GPS Data Collection Standards for GIS Data Development NJDEP GPS Data Collection Standards for GIS Data Development Bureau of Geographic Information Systems Office of Information Resource Management April 24 th, 2017 Table of Contents 1.0 Introduction... 3

More information

METIS Second Master Training & Seminar. Augmentation Systems Available in Egypt

METIS Second Master Training & Seminar. Augmentation Systems Available in Egypt METIS Second Master Training & Seminar Augmentation Systems Available in Egypt By Eng. Ramadan Salem M. Sc. Surveying and Geodesy Email: ramadan_salem@link.net Page 1 Augmentation Systems Available in

More information

Assessing & Mitigation of risks on railways operational scenarios

Assessing & Mitigation of risks on railways operational scenarios R H I N O S Railway High Integrity Navigation Overlay System Assessing & Mitigation of risks on railways operational scenarios Rome, June 22 nd 2017 Anja Grosch, Ilaria Martini, Omar Garcia Crespillo (DLR)

More information

Radar Probabilistic Data Association Filter with GPS Aiding for Target Selection and Relative Position Determination. Tyler P.

Radar Probabilistic Data Association Filter with GPS Aiding for Target Selection and Relative Position Determination. Tyler P. Radar Probabilistic Data Association Filter with GPS Aiding for Target Selection and Relative Position Determination by Tyler P. Sherer A thesis submitted to the Graduate Faculty of Auburn University in

More information

Configuring the Global Navigation Satellite System

Configuring the Global Navigation Satellite System Configuring the Global Navigation Satellite System Effective Cisco IOS-XE Release 3.17, the Cisco ASR-920-12SZ-IM router uses a satellite receiver, also called the global navigation satellite system (GNSS),

More information