1 / 61

Implementation and Statistical Analysis of a Differential GPS System

Implementation and Statistical Analysis of a Differential GPS System. Team Members: Jim Connor Jon Kerr. Advisor: Dr. In Soo Ahn. Abstract.

layne
Download Presentation

Implementation and Statistical Analysis of a Differential GPS System

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Implementation and Statistical Analysis of a Differential GPS System Team Members: Jim Connor Jon Kerr Advisor: Dr. In Soo Ahn

  2. Abstract • Normal GPS (Global Positioning System) is not accurate enough for the applications here at Bradley University. For greater accuracy, a Differential GPS system will be implemented. To do this, two GPS units are required. A base station, with a known position, sends error correction data to a mobile unit. The error correction data is sent wirelessly through a radio link. The data can then be viewed on a laptop computer for statistical analysis.

  3. Project Purpose • Previous project: Autonomous Vehicle with GPS Navigation - Jason Seelye and Bryan Everett • Problem: GPS not accurate enough to control vehicle • Our focus: Create GPS system with the greatest accuracy possible for the control of autonomous vehicles (sidewalk)

  4. Topics of Discussion • Explanations and Terminology • Equipment used • Project description • Hardware implementation process • Software implementation process • Problems encountered and solutions • Data gathering • Statistical Analysis of data • Conclusions and Recommendations

  5. Explanations and Terminology • Global Positioning System (GPS) – A satellite navigation system capable of providing highly accurate position, velocity, and timing information. • Differential Global Positioning System (DGPS) – A GPS system that is capable of being more accurate by taking into account position correction information. • Circular Error Probability (CEP) – Radius of the circle, centered at the known antenna position, that contains 50% of the data points in a horizontal scatter plot. • Dilution of Precision (DOP) – Accuracy of position due to satellite geometric positions.

  6. Specifications

  7. Equipment Used • Two NovAtel® RT-20 Receivers • Operate at 1575.42 MHz • 12 Channel Receivers • Two FreeWave® Radios • Operate at 928 MHz • 20 mile line of sight range • NEC® Laptop Computer

  8. Block Diagram Transmitter / Base Station Position Error Corrections GPS Antenna NovAtel Receiver FreeWave Radio Antenna Receiver / Mobile Station Position Error Corrections FreeWave Radio NovAtel Receiver Laptop Computer for analysis Antenna GPS Antenna

  9. Block Diagram Binary data stream Reference Station RF modem RF modem Mobile Station Commands Data Computer Matlab

  10. Functional Description • An exact geographical position is determined. • Reference station placed at this point. • Since at a known position, able to calculate errors from GPS satellites. • Sends error corrections across a wireless radio link to remote station. • Remote station receives error corrections and also position information from same satellite constellation that reference station sees. • Remote station uses both satellite data and error corrections to calculate position. Serial Correction Data NovAtel® Receiver Base Station NovAtel® Receiver Remote Station

  11. Errors Removed by Differential GPS • Ionosphere 0-30 meters Mostly Removed • Troposphere 0-30 meters All Removed • Signal Noise 0-10 meters All Removed • Ephemeris Data 1-5 meters All Removed • Clock Drift 0-1.5 meters All Removed • Multipath 0-1 meters Not Removed • SA 0-70 meters All Removed

  12. Design Approach • Correct operation of NovAtel receivers borrowed from CAT • Correct operation of FreeWave Radio communication link borrowed from Dr. Sennott (TISI) • Successful GPS receiver – radio link integration

  13. Hardware Implementation Reference Point • Placed NovAtel GPS Receiver on Jobst Hall and collected position information (scatter plot) for about two hours. • Used the average Latitude and Longitude of this plot as our reference point.

  14. Hardware Implementation Latitude = 40 41 56.613512 N Longitude = 89 37 1.613741 W Height = 192.341 m

  15. Hardware Implementation Configure Reference Station • Data rate – 9600 bps • Minimum rate – 2400 bps • Fix position of NovAtel reference station. fix position 40.69903722, -89.61712110, 192.3415 • Log differential corrections. log com1 rtcm3 ontime 1 log com1 rtcm59 ontime 1 log com1 rtcm1 ontime 1

  16. RTCM Corrections • Radio Technical Commission for Maritime Services (RTCM) set up a team composed of representatives of US federal authorities, GPS manufacturers and users. • In early 1990, they adopted a first standard for the transmission format and contents for DGPS applications • Special Committee 104 (SC104)

  17. Types of RTCM Log Commands (Access to carrier phase)

  18. Hardware Implementation Configure Mobile Station • Accept differential corrections from reference station accept com2 rt20 • Log GPS data log com1 p20a ontime 1 log com1 dopa ontime 1

  19. Hardware Implementation Saving GPS Data • Using Windows HyperTerminal, save all data to a Notepad file. • Process data in Matlab.

  20. Software Implementation Approach • Use Matlab to read a log file and process data • Plot data points in a scatter plot • Calculate CEP • Plot drifting of position accuracy • Plot position accuracy vs. number of satellites available

  21. Software Flow Chart Open and read log file Convert latitude and longitude to local coordinates (meters) Calculate CEP Plot graphs Calculate and display mean values

  22. Software Implementation Opening and reading log file • R = input('What type of log file is it? 1=POSA 2=P20A 3=P20A and DOPA ') • file = INPUTDLG('Enter the File name','Enter GPS log file to open') • [time lat long height] = textread(file, ' %*s %f %*[^\n]', 'delimiter',',')

  23. Software Implementation Coordinate conversion • Local (North, East, Down) • Uses a reference point to find the change in direction • Converts to meters

  24. Software Implementation Coordinate conversion • lat_ref=mean(lat) long_ref=mean(long) height_ref=mean(height) a = earth_shape; north = (a(2) * (lat - lat_ref))*pi/180; d = a(2) * sin(lat); c = a(1) * cos(lat); lat_angle = atan2(d,c); east = -(a(1) * cos(lat_angle).*(long – long_ref))*pi/180; down = -(height-height_ref);

  25. Software Implementation Calculating CEP • Find the radius of a circle where half of the points lie • Finds distances for all the points • Compares to a incrementing radius • Radius increments in millimeters starting at 1 mm

  26. Software Implementation Calculating CEP

  27. Software Implementation Plotting graphs • Scatter plot plot(east,north,'x'),title('CEP') axis equal • Subplots subplot(311),plot(east),title('East Coordinates'), subplot(312),plot(north),title('North Coordinates'), subplot(313),plot(height),title('Height')

  28. Software Implementation Displaying mean values • 40.69896654 -89.61670040 to • 40° 41’ 56.28”N 89° 37’ 0.11” W • if(lat_ref>0) dirLat='N';else dirLat='S';end lat_ref=abs(lat_ref); deg=floor(lat_ref); min=(lat_ref-deg)*60; sec=(min -floor(min))*60; Lat=sprintf(' %d %d %f %c',deg,floor(min),sec,dirLat);

  29. Matlab screen output

  30. Problems Encountered • CAT NovAtel receiver missing software • Radio transmitter link doesn’t work or transmit data when connected to GPS receiver • Can’t find geographic benchmark data

  31. Problems Encountered • Transmitter doesn’t transmit data when connected to GPS receiver • Solution • Null-modem/ Straight cable hardware conflict • Bought Null Modem adapter from Radio Shack

  32. Initial Data Gathering Procedure • Set up base station • Set up remote station far away • Start sending corrections • Use laptop to capture remote station data • Process in Matlab CEP = 112 m

  33. Initial Data Gathering Stand alone mode: CEP = 112 m

  34. Initial Data Gathering Differential GPS mode: CEP = 94 m

  35. Initial Data Gathering Ashtech: CEP = 2.6 m

  36. Code Problem • We were converting Latitude and Longitude to meters without first converting to radians • All our conversions were off by a factor of about 57 • 1 radian = 57.3 degrees

  37. Data Gathering Corrected Matlab Code: CEP = 2.07 m

  38. Data Gathering Differential: CEP = 10.7 cm

  39. Data Gathering Differential Steady State: CEP = 4.7 cm

  40. Statistical Analysis • Scatter Plots - CEP • Satellite Switching • Steady State response • DOP • Warm and Cold Start • DGPS – GPS comparison

  41. Statistical Analysis DGPS system operating • CEP • Satellite effects • Time to steady state

  42. Statistical Analysis CEP= 12.7cm 16 min

  43. Steady State Response CEP= 4.7cm

  44. Statistical Analysis DGPS system operating • Fix base station position with less accuracy • What are the effects?

  45. Statistical Analysis CEP = 40cm 30 min

  46. Statistical Analysis Good DOP values are between 1 and 3. Higher values mean poor position accuracy due to spacing of satellites.

  47. Statistical Analysis DOP:

  48. Statistical Analysis DGPS system operating • What are the effects of taking GPS data at warm and cold starts? • Cold start: Initial startup • Warm start: Been running for a while

  49. Statistical Analysis (cold) CEP= 1.83m

  50. Statistical Analysis (warm) CEP= 1.05m

More Related