gps-hacking.html 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489
  1. <!DOCTYPE HTML>
  2. <html lang="en">
  3. <head lang="en">
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5. <meta name="Author" content="Eric S. Raymond">
  6. <meta name="Description" content="A gentle introduction to writing GPS-aware applications">
  7. <meta name="Keywords" content="GPS, gpsd, hacking, applications">
  8. <meta name="Revised" content="9 April 2015">
  9. <meta name="robots" content="index,follow">
  10. <link rel="stylesheet" href="main.css" type="text/css">
  11. <title>ESR's Guide to Hacking With GPS</title>
  12. </head>
  13. <body>
  14. <div id="Header">ESR's Guide to Hacking With GPS</div>
  15. <div id="Menu">
  16. <img src="gpsd-logo-small.png" alt="Small gpsd Logo" height="126"
  17. width="105"><br>
  18. <a href="index.html">Home</a><br>
  19. <a href="index.html#news">News</a><br>
  20. <a href="index.html#downloads">Downloads</a><br>
  21. <a href="index.html#mailing-lists">Mailing lists</a><br>
  22. <a href="index.html#documentation">Documentation</a><br>
  23. <a href="faq.html">FAQ</a><br>
  24. <a href="xgps-sample.html">Screenshots</a><br>
  25. <a href="index.html#recipes">Recipes</a><br>
  26. <a href="index.html#others">Other GPSDs</a><br>
  27. <a href="hardware.html">Hardware</a><br>
  28. <a href="for-vendors.html">For GPS Vendors</a><br>
  29. <a href="wishlist.html">Wish List</a><br>
  30. <a href="hall-of-shame.html">Hall of Shame</a><br>
  31. <a href="troubleshooting.html">Troubleshooting Guide</a><br>
  32. <a href="hacking.html">Hacker's Guide</a><br>
  33. <a href="protocol-transition.html">Application Compatibility</a>
  34. <a href="references.html">References</a><br>
  35. <a href="history.html">History</a><br>
  36. <a href="future.html">Future</a><br>
  37. <div>&nbsp;</div>
  38. <a href='http://www.catb.org/hacker-emblem/'><img
  39. src='glider.png' alt='hacker emblem' height="55" width="55"></a><br>
  40. <script src="https://www.openhub.net/p/3944/widgets/project_thin_badge.js"></script>
  41. <hr>
  42. <script><!--
  43. google_ad_client = "pub-1458586455084261";
  44. google_ad_width = 160;
  45. google_ad_height = 600;
  46. google_ad_format = "160x600_as";
  47. google_ad_type = "text";
  48. google_ad_channel = "";
  49. //--></script>
  50. <script src="https://pagead2.googlesyndication.com/pagead/show_ads.js">
  51. </script>
  52. <hr>
  53. <a href="https://validator.w3.org/check/referer"><img
  54. src="https://www.w3.org/Icons/valid-html401"
  55. alt="Valid HTML 4.01!" height="31" width="88"></a>
  56. </div>
  57. <div id="Content">
  58. <p>This is a gentle introduction to writing GPS-aware applications
  59. &mdash; or, How I Stopped Worrying And Learned To Love Spherical
  60. Trigonometry. It will explain the capabilities and limitations of GPS
  61. hardware and the <code>gpsd</code> software that you need to know about when
  62. writing location-aware applications.</p>
  63. <p>We'll go from general to specific, beginning with an overview of how
  64. GPS works and ending with architectural suggestions about how to use
  65. <code>gpsd</code> to make your application location-aware.</p>
  66. <h1>How GPS Works</h1>
  67. <p>First, the basics of how GPS works. It depends on the fact that
  68. satellite orbits can be modelled accurately. A GPS receiver is a
  69. combination of a radio receiver and computer that receives timing
  70. signals and orbit information from GPS satellites, and in particular
  71. can compute exactly where each satellite will be at any given time
  72. with respect to the fixed Earth. (For those of you who enjoy such
  73. details, what they actually predict is each satellite's position with
  74. respect to a coordinate system known as WGS84 which closely fits the
  75. mean sea level of Earth.)</p>
  76. <p>Although the term <strong>GPS</strong> properly refers only to the
  77. system operated by the United States Air Force (also
  78. called <strong>NAVSTAR</strong>, it is sometimes used loosely to refer
  79. to similar systems. We use the accepted term <strong>Global
  80. Navigation Satellite System (GNSS)</strong> to refer to all
  81. satellite-based navigation systems. The main systems other than GPS
  82. are GLONASS (Russia), Galileo (EU) and BeidDou (China). Because
  83. the <strong>gpsd</strong> project originated when GPS was the
  84. overwhelmingly dominant paradigm, many parts of the documentation and
  85. code refer to GPS when GNSS is more accurate. Our intent is to adjust
  86. the documentation and to leave the code alone because there is a real
  87. cost to changing code.</p>
  88. <p>This paragraph and much of the following text is specific to
  89. GPS/NAVSTAR, but the principles largely apply to other systems.
  90. There are presently about 30 dedicated Navstar satellites (full coverage
  91. can be achieved with 24), twenty thousand km (twelve thousand miles),
  92. up in high-inclination orbits, so that each one's trajectory wraps around
  93. the Earth like a ball of yarn as the planet spins beneath them. The
  94. inclinations are tuned to guarantee that about twelve will be visible
  95. at any given time from anywhere on Earth (coverage falls off a little
  96. at high latitudes).</p>
  97. <p>You can look at a very nifty <a
  98. href="http://rhp.detmich.com/gps.html">simulation</a>
  99. of Navstar satellite orbits. (Requires Java, also includes
  100. GLONASS, the Russian military equivalent).</p>
  101. <p>Each satellite broadcasts identification pulses, each one including
  102. the clock time it was sent. A GPS receiver, picking up these
  103. pulses, and knowing the speed of light, can recover its
  104. 4-dimensional location (Latitude, Longitude, Altitude, and Time).
  105. Ideally, you would need to solve four simultaneous equations with
  106. the four unknowns, so would need four visible satellites. This
  107. is known as a <strong>3D</strong> fix. Computing the GPS's exact
  108. position with respect to the satellites becomes a relatively
  109. simple if tedious exercise in spherical trigonometry (which,
  110. fortunately, the GPS's firmware does for you).
  111. Note that the GPS reciever does <b>not</b> need to know its own time
  112. or location to begin with.</p>
  113. <p>An excellent introduction is available at:
  114. <a href="http://electronics.howstuffworks.com/gadgets/travel/gps.htm">How GPS Receivers Work</a>, see page 4 in particular.
  115. <p>That's the theory. In practice, the system has important limits.
  116. Anything, natural or artificial, that messes with the signal timings
  117. will degrade the accuracy of your position fix. Until it was
  118. abolished by Presidential decree in 2000, the most important limit was
  119. artificial, the so-called 'Selective Availability' feature. The
  120. satellites were programmed to introduce patterned timing jitter into
  121. the signals. The U.S. military knew the pattern, but nobody else did
  122. (or, at least, nobody who was admitting it).</p>
  123. <p>In Sep 2007 the U.S. government announced that the future generation
  124. of GPS satellites, known as GPS III, will be without the SA feature.
  125. Doing this will make the policy decision of 2000 permanent.
  126. The important limits are on accuracy are now due to physics.
  127. One is a variable amount of signal lag produced as the GPS
  128. signals pass through the ionosphere and troposphere, which partly
  129. refracts radio waves. This can be largely compensated for by a
  130. technique called "Differential GPS" (DGPS). Ground-based reference
  131. stations are established in well-surveyed locations, and compare
  132. measured ranges (pseudoranges to be precise) with their calculated
  133. values. These errors account for unknown propagation delays, clock
  134. errors, and any other unmodeled errors. The reference stations can
  135. then tell nearby GPS receivers the required corrections, which are
  136. then applied to observed pseudoranges before computing a position.
  137. This information may be broadcast via radio (called "Ground Based
  138. Augmentation Systems"), or via satellites (called "Space Based
  139. Augmentation Systems").
  140. See <a href="#dgps">DGPS and friends</a> for details on how this
  141. works.</p>
  142. <p>In practice, the most important limit on accuracy is the actual
  143. visibility of satellites. A timing signal has to be fairly strong and
  144. clear, with little noise or distortion, before a GPS can use it. The
  145. frequencies GPS has to use in order to punch through the ionosphere
  146. with minimal attenuation (unlike conventional radio and TV signals)
  147. don't cope well with solid barriers. Thus, GPS tends to work poorly
  148. if at all inside buildings. Tall trees and tall buildings can mess it
  149. up, blocking line of sight to satellites that aren't nearly directly
  150. overhead.</p>
  151. <p>Accuracy also falls off a bit when you're in motion. This isn't a
  152. physical effect, but mostly due to the fact that computation always
  153. takes a little time; by the time the GPS figures out where you are,
  154. you're not there any more.</p>
  155. <p>Another limit, implicit in the geometry, is that GPS is relatively
  156. poor at getting your precise altitude. When you can get a signal lock
  157. on four satellites, a modern GPS will give you longitude and latitude
  158. within about 10 meters or yards, down to 2 with DGPS correction. Vertical
  159. uncertainty will be much higher, as much as fifty meters.</p>
  160. <p>People who really <a
  161. href="http://www.wsrcc.com/wolfgang/gps/accuracy.html">obsess</a>
  162. about GPS accuracy quote it not as a single figure but as a
  163. probability-of-error: e.g., you're within 10 meters 95% of the
  164. time and 2 meters 50% of the time.</p>
  165. <h1 id='dgps'>DGPS and friends</h1>
  166. <p>DGPS requires out-of-band communication with a service
  167. providing GPS signal correction information to make the GPS
  168. positioning more accurate. There are two ways of communicating
  169. this in real-time, GBAS and SBAS. An example of GBAS is the National
  170. Differential GPS system (NDGPS) in the US, transmitting corrections
  171. around 300 kHz. There are similar systems all over
  172. the worldwide, usually run by maritime navigation authorities. A
  173. disadvantage of these systems is that consumer GPSes do not
  174. listen on these frequencies, so this information is not really
  175. available to them. Another example is the system being installed
  176. at airports worldwide, to enable precision landing. Coverage for both
  177. these system types is between 30km and 40km.</p>
  178. <p>Examples of SBAS include WAAS (US), EGNOS (Europe), GAGAN (India),
  179. and MSAS and QZSS (Japan). These systems are almost identical
  180. in their operation. They provide DGPS corrections with
  181. in-band communication &mdash; geo-stationary satellites broadcasting
  182. GPS signal correction information on the same frequency and format as the
  183. GPS satellites. The system makes GPSes more accurate,
  184. and adds integrity checks making it possible to detect when the
  185. GPS location is totally wrong. Unlike GBAS, your GPS will generally
  186. use these systems automatically whenever it can see the satellites.</p>
  187. <p>SBAS data starts out as normal DGPS stations observing the
  188. errors. That data gets processed and interpolated into a grid which
  189. models ionospheric and tropospheric delay over the SBAS coverage
  190. area. The GPSes then interpolate into that grid to get an estimate of
  191. lag for their current position. Accuracy will vary based on how
  192. close a GPS is to a DGPS station.
  193. </p>
  194. <p>SBAS systems have wider coverage areas than GBAS, but still
  195. not worldwide; as can be seen from the list above, each country
  196. has a system covering its area of interest. See
  197. <a href="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/SBAS_Service_Areas.png/800px-SBAS_Service_Areas.png">SBAS Service Areas</a>.
  198. </p>
  199. <p>Note that DGPS improves accuracy in <b>both</b> position and time,
  200. the two are intrinsically related.
  201. <h1>How GPS Hardware Talks To Computers</h1>
  202. <p>From a software designer's point of view, a GPS receiver is an
  203. oracle that tells you its location whenever it can get line-of-sight
  204. to four satellites. Our next topic is how it gets that information
  205. to a computer in a form your application can use.</p>
  206. <p>Almost all GPSes are serial devices that use either RS-232C or USB
  207. to communicate with the host machine. Most track a standard called
  208. NMEA 0183 which prescribes both electrical signal levels and a data
  209. encoding. The protocol is bidirectional, but designed in the expectation
  210. that most of the traffic will be GPS-to-computer, with commands
  211. going in the computer-to-GPS direction rare.</p>
  212. <p>The modern trend in GPSes is away from RS232C and towards USB. USB
  213. GPSes keep the NMEA data protocol but discard the NMEA link layer. Under
  214. Linux, USB GPSes use the usbserial module and look like serial ports.
  215. Part of <code>gpsd</code>'s job is to hide this stuff; applications don't have
  216. to be aware of NMEA or the link layer, they just query <code>gpsd</code> for
  217. information.</p>
  218. <h2>The good news about NMEA</h2>
  219. <p>The basic design of the NMEA data protocol is very simple. The GPS
  220. throws ASCII text lines called 'sentences', each beginning with a '$'
  221. and terminated by CR/LF, at the host machine. Usually the host gets
  222. one update a second, but the GPS has the option of sending more
  223. frequently when it detects a change of position or velocity or status.
  224. The standard prescribes a serial encoding at 4800bps, 8 bits, one stop
  225. bit, no parity; although most consumers recievers use 9600bps.</p>
  226. <p>Here are some sample NMEA sentences:</p>
  227. <pre><code>
  228. $GPGGA,212734,4740.0569,N,12219.6612,W,1,08,74.00,73.9,M,638.000000,M,,*6D
  229. $GPRMC,212734,A,4740.0569,N,12219.6612,W,0.000000,0.000000,020403,18.936255,E*60
  230. $GPGSA,A,3,17,06,23,15,16,18,10,30,,,,,152.00,74.00,133.00*3F
  231. $GPGGA,212735,4740.0569,N,12219.6612,W,1,08,74.00,74.1,M,638.000000,M,,*63
  232. $GPRMC,212735,A,4740.0569,N,12219.6612,W,0.000000,0.000000,020403,18.936255,E*61
  233. </code></pre>
  234. <p>Each sentence consists of a comma-separated fields. The first
  235. field is always a message type and the last a checksum that can be
  236. used to check for data corruption. Interpreting NMEA sentences is not
  237. complicated. Modulo a few glitches like 2-digit year numbers, the NMEA
  238. standard does a pretty good job of specifying a message set for GPSes
  239. that want to convey data to computers.</p>
  240. <p>More good news: you should never have to deal with this level
  241. &mdash; <code>gpsd</code>'s purpose is to insulate you from it.</p>
  242. <h2>The bad news about NMEA</h2>
  243. <p>That's the good news. Now for the bad news, which comes in five
  244. pieces:</p>
  245. <p>First, the NMEA standard does <em>not</em> specify a command
  246. repertoire for the opposite direction. Thus, functions like changing
  247. the GPS's update frequency or selecting the subset of sentences for it
  248. to send are often not supported at all, and when they are it's all by
  249. sentences that are vendor-specific.</p>
  250. <p>This used to be more of a problem than it is today. Early GPSes
  251. tended to have elaborate facilities for accepting lists of waypoints
  252. and sending back course information to help you navigate to them.
  253. Modern high-end units still do, but the GPSes designed for connecting
  254. to computers are increasingly designed on the assumption that the host
  255. computer will do all the waypoint geometry itself and the GPSes only
  256. job is to deliver periodic position and velocity readings. Thus, they
  257. tend to have no control codes at all. This makes them laudably
  258. stupid.</p>
  259. <p>Second, vendors don't stick to the NMEA-prescribed 4800bps data
  260. rate. This is understandable; 4800 is very slow by today's standards,
  261. and by boosting bits per second they can deliver information that's
  262. fresher by a few milliseconds (which might make a difference if, say,
  263. you're using a GPS-enabled autopilot to land an aircraft). Some GPSes
  264. feature data rates upwards of 38400bps. However, this actually does
  265. little good unless the application polls the GPS at a rate faster than
  266. 1Hz rather than waiting for it, as most GPS receivers cannot be told to
  267. ship updates faster than once per second &mdash; and the polling
  268. commands (when they exist at all) are proprietary. And the fact that
  269. GPSes don't have a single data rate graven in stone brings back all
  270. the well-known baud-mismatch configuration problems we thought we'd
  271. left behind in the 1980s.</p>
  272. <p>The third problem with NMEA is that it's not universal. A
  273. decreasing but still significant percentage of GPSes use proprietary
  274. binary protocols. For example, there was a GPS chipset called
  275. "Zodiac" made by Rockwell International, that used to be very widely
  276. OEMed by GPS makers. It spoke NMEA, but had irritating limitations in
  277. that mode like not being able to accept DGPS corrections. It
  278. preferred a tight-packed binary protocol. There haven't been any new
  279. Zodiac-based designs in a few years, but a lot of Zodiac-based
  280. GPSes (like the DeLorme EarthMates made before they switched over to a
  281. SiRF chipset in 2003) are still around.</p>
  282. <p>2004's equivalent of the Zodiac is the SiRF-II chipset, which seems
  283. to be nearly ubiquitous in inexpensive GPS receivers. It too speaks
  284. a binary protocol, but only if you ask it to; it's fully capable
  285. in NMEA mode. Which is where it boots up. The idea seems to be
  286. that you can switch to binary to improve your bits-per-second
  287. in latency-critical applications.</p>
  288. <p>The fourth problem with NMEA is that it doesn't deliver all the
  289. information that the GPS has in one atomic message. In particular,
  290. you can't get altitude (delivered in the GPGGA sentence only) and speed
  291. (delivered in GPRMC and GPVTG) at the same time. This is annoying;
  292. ideally, you want your position/velocity/time oracle to deliver one
  293. observation tuple conveying all seven degrees of freedom (t, x, y, z,
  294. vx, vy, vz) and their error estimates.</p>
  295. <h2>Learning more about NMEA</h2>
  296. <p>The final irritation about NMEA is that it's expensive to buy a
  297. description. The National Marine Electronics Association is a trade group of
  298. electronics dealers, and they want <a
  299. href='http://www.nmea.org/pub/0183/'>$250</a> for a copy of their
  300. standard. Numerous Web sources have reverse-engineered or abstracted
  301. bits of it; the NMEA page piously warns that <q>In most cases they are
  302. very old versions or incorrect interpretations and should not be
  303. depended upon for accuracy,</q> then mutters darkly about copyright
  304. violations.</p>
  305. <p><a href='NMEA.html'>Here</a> is the best compendium I know of. I
  306. have never seen a copy of the official NMEA standard. Fortunately, it
  307. isn't necessary for even <code>gpsd</code> developers to know most of
  308. it, since most modern GPS receivers only emit about a half-dozen of the
  309. eighty or so NMEA sentences. RMC, GGA, GSA, GSV (and now possibly
  310. GBS) are all you are ever likely to need to know about.</p>
  311. <p>After you've read about those sentences, it can be instructive to
  312. run <code>gpsd</code> in a mode something like this:</p>
  313. <pre><code>
  314. ./gpsd -N -n -D 2 /dev/ttyUSB0
  315. </code></pre>
  316. <p>Watching the output for thirty seconds or so will give you a good
  317. feel for what your GPS has to say, and how often it says it.</p>
  318. <h1>Locking and Loading</h1>
  319. <h2>Autonomous mode</h2>
  320. <p>
  321. If a GPS receiver has to figure out its postition without outside
  322. assistance, it is said to be in <dfn>autonomous mode</dfn>.
  323. </p>
  324. <p>The time required for a GPS to get a fix (Time To First Fix (TTFF))
  325. can vary from under 15 seconds up to just under 30 minutes (actually,
  326. 29 plus calculation time). The main factors affecting this latency are
  327. (a) whether it has an almanac available,
  328. (b) whether it has satellite ephemerides available, and
  329. (c) whether it has recent fix available.
  330. Of course the quality of signal at your location matters as well.</p>
  331. <p>If a GPS has not been on for several months, then it has no current
  332. almanac available. It was to wait to download one before it can
  333. generate a fix. This can take just under 15 mins. This is sometimes
  334. called an <dfn>cold start</dfn>.</p>
  335. <p>While the almanac download takes 15 minutes, you have to be there for the
  336. start of it, otherwise you have to wait for the next cycle. So if you are
  337. unlucky and just miss the start of one, it could take just under 29 minutes
  338. to obtain, and on average closer to 22 min.</p>
  339. <p>If a GPS has not been on for a day (four to six hours) then it has
  340. a valid almanac but no valid satellite ephemerides, and must download at
  341. least four before it can generate an accurate fix. This is sometimes
  342. called a <dfn>warm start</dfn>. Each satellite has its own ephemeris
  343. that must be downloaded if a current copy is not fresh.
  344. </p>
  345. <p>GPSes store ephemerides is non-volatile memory, either internal
  346. flash storage or battery-backed SRAM. Thus, a GPS does not need to
  347. have been on continuously to have ephemerides available, but it will
  348. consider old data to be invalid after a while. In normal operation
  349. the GPS occasionally gets refreshes of ephemeris and almanac data
  350. from the satellites it's listening to.</p>
  351. <p>For both an cold start and a warm start, if the sat signal is
  352. momentarily lost, the process may have to restart and you'll get
  353. more delay.</p>
  354. <p>If a GPS has been on recently, in the current location, then this
  355. is sometimes called <dfn>hot start</dfn> and
  356. an accurate fix can be generated quite quickly. This will usually be
  357. a few seconds for a modern GPS.</p>
  358. <h2>A-GPS mode</h2>
  359. <p>
  360. If the GPS receiver can download the almanac or ephemerides, it can proceed
  361. quickly to a <i>hot start</i>. This is uncommon for GPSes that are
  362. connected to laptops, but is usual for GPS in mbile phones.
  363. <dfn>A-GPS</dfn> is variously expanded as Augmented, Assisted, or Aided.
  364. </p>
  365. <h1>GPSs and Power Management</h1>
  366. <p>Many GPSes are designed to power down or go to standby mode when
  367. DTR or its USB equivalent goes low (under Linux, this happens when you
  368. close the port). An important category of exceptions is USB SiRF-II
  369. GPSes; these don't seem to power down on DTR low, but instead go
  370. to a low-power standby mode for the 8/10s of every second that they're
  371. not shipping packets.</p>
  372. <p>Powering down on DTR low can be a valuable power-saving measure if
  373. the GPS is (say) running off of laptop batteries in a navigation or
  374. wardriving system. Thus, you don't want to keep your GPS device open
  375. when you don't actually need information from it.</p>
  376. <p>Unfortunately, this rule can collide with one of the persistent
  377. problems with GPSes &mdash; though they can update a previous fix
  378. quickly (in 0.1sec or less), they can take a long time to acquire a
  379. first fix when they power up.</p>
  380. <p>When a GPS receiver boots up, it has to suck radio waves for a
  381. while just to figure out what satellites might be available in line of
  382. sight. The speed at which it can do this is inversely proportional to
  383. the number of GPS channels it can sample simultaneously. Older one-
  384. or two-channel units could take several minutes at this. In 2004,
  385. even low-end GPS receivers have twelve channels and can thus cock a
  386. separate ear for as many satellites as they're ever likely to see.
  387. Even so, it's not uncommon for them to take 30 or 40 seconds after a
  388. cold boot to get a fix.</p>
  389. <p>One of the things <code>gpsd</code> does for applications is handle this
  390. power-management issue. When no clients are active, <code>gpsd</code> will
  391. automatically close the GPS device, re-opening it only when another
  392. client connects to the daemon.</p>
  393. <p>For more details on programming with <code>gpsd</code>, see the
  394. <a href="faq.html">FAQ</a>.</p>
  395. <h1>Where to learn more</h1>
  396. <dl>
  397. <dt><a href="http://34n118w.net/htmldir/GPS.html">How does GPS work?</a></dt>
  398. <dd>This is where the orbital simulation came from.</dd>
  399. <dt><a href='https://en.wikipedia.org/wiki/GPS'>Wikipedia on GPS</a></dt>
  400. <dd>Good introduction with much more on the history of the system.</dd>
  401. <dt><a href="http://www.ualberta.ca/~ckuethe/gps/">GPS Hackery</a></dt>
  402. <dd>Chris Kuethe's page has links to many interesting resources.</dd>
  403. <dt><a href='http://www.topology.org/soft/gps.html'>GPS interfaces and
  404. software</a></dt>
  405. <dd>Linux and open-source resources for working with GPSes.</dd>
  406. </dl>
  407. <hr>
  408. <script src="datestamp.js"></script>
  409. </div>
  410. </body>
  411. </html>