xgps-sample.html 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <!DOCTYPE HTML>
  2. <html lang="en">
  3. <head lang="en">
  4. <title>The xgps client</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta name="Author" content="Eric S. Raymond">
  7. <meta name="Revised" content="9 April 2015">
  8. <meta name="robots" content="index,follow">
  9. <meta name="Description" content="xgps, a sample gpsd client in C">
  10. <meta name="Keywords" content="GPS, xgps, gpsdd">
  11. <link rel="stylesheet" href="main.css" type="text/css" media='all'>
  12. <meta name="MSSmartTagsPreventParsing" content="TRUE">
  13. </head>
  14. <body>
  15. <div id="Header">
  16. The xgps client
  17. </div>
  18. <div id="Menu">
  19. <img src="gpsd-logo-small.png" alt="Small gpsd Logo" height="126"
  20. width="105"><br>
  21. <a href="index.html">Home</a><br>
  22. <a href="index.html#news">News</a><br>
  23. <a href="index.html#downloads">Downloads</a><br>
  24. <a href="index.html#mailing-lists">Mailing lists</a><br>
  25. <a href="index.html#documentation">Documentation</a><br>
  26. <a href="faq.html">FAQ</a><br>
  27. Screenshots<br>
  28. <a href="index.html#recipes">Recipes</a><br>
  29. <a href="index.html#others">Other GPSDs</a><br>
  30. <a href="hardware.html">Hardware</a><br>
  31. <a href="for-vendors.html">For GPS Vendors</a><br>
  32. <a href="wishlist.html">Wish List</a><br>
  33. <a href="hall-of-shame.html">Hall of Shame</a><br>
  34. <a href="troubleshooting.html">Troubleshooting Guide</a><br>
  35. <a href="hacking.html">Hacker's Guide</a><br>
  36. <a href="protocol-transition.html">Application Compatibility</a>
  37. <a href="references.html">References</a><br>
  38. <a href="history.html">History</a><br>
  39. <a href="future.html">Future</a><br>
  40. <div>&nbsp;</div>
  41. <a href='http://www.catb.org/hacker-emblem/'><img
  42. src='glider.png' alt='hacker emblem' height="55" width="55"></a><br>
  43. <script src="https://www.openhub.net/p/3944/widgets/project_thin_badge.js"></script>
  44. <hr>
  45. <script><!--
  46. google_ad_client = "pub-1458586455084261";
  47. google_ad_width = 160;
  48. google_ad_height = 600;
  49. google_ad_format = "160x600_as";
  50. google_ad_type = "text";
  51. google_ad_channel = "";
  52. //--></script>
  53. <script src="https://pagead2.googlesyndication.com/pagead/show_ads.js">
  54. </script>
  55. <hr>
  56. <a href="https://validator.w3.org/check/referer"><img
  57. src="https://www.w3.org/Icons/valid-html401"
  58. alt="Valid HTML 4.01!" height="31" width="88"></a>
  59. </div>
  60. <div id="Content">
  61. <p>Included in the package is a sample client called <code>xgps</code>. It
  62. connects to a <code>gpsd</code> at any host you tell it to, and
  63. requests raw data, so that it can display the current location of all
  64. visible GPS satellites your receiver 'sees'.</p>
  65. <p><img src="gpsd1.png" alt="[image] The GPS receiver has no fix yet."></p>
  66. <p>The GPS receiver has not yet acquired a fix. The receiver has not
  67. tracked the grey satellites, but knows where they should be.</p>
  68. <p>The next image shows a good fix. A 3d fix provides latitude, longitude
  69. as well as altitude data, and requires at least four good satellites. A
  70. 2d fix does not give altitude, but only requires 3 satellites.</p>
  71. <p><img src="gpsd2.png" alt="[image] The GPS receiver has a good 3d fix."></p>
  72. <p>Depending on your GPS receiver, the additional satellites may be used
  73. to determine location with better accuracy.</p>
  74. <hr>
  75. <script src="datestamp.js"></script>
  76. </div>
  77. </body>
  78. </html>