README.adoc 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. = gpsd README file
  2. :date: 17 February 2021
  3. :description: README for GPSD
  4. :docinfodir: www
  5. :keywords: GPSD, GPS
  6. :robots: index,follow
  7. :sectlinks:
  8. :type: article
  9. :toc: macro
  10. include::www/inc-menu.adoc[]
  11. WARNING:
  12. The files at https://gitlab.com/gpsd/gpsd/-/tags are NOT the gpsd
  13. release files. DO NOT use them. The release files are at:
  14. http://download-mirror.savannah.gnu.org/releases/gpsd/
  15. == GENERAL
  16. gpsd is a userland daemon acting as a translator between GPS, GNSS, and
  17. AIS receivers and their clients. gpsd listens on port 2947 for clients
  18. requesting position/time/velocity information. The receivers are
  19. expected to generate position information in a well-known format -- as
  20. NMEA-0183 sentences, SiRF binary, Rockwell binary, Garmin binary
  21. format, or other vendor binary protocols. gpsd takes this
  22. information from the GPS and translates it into something uniform and
  23. easier to understand for clients. The distribution includes sample
  24. clients, application interface libraries, and test/profiling tools.
  25. The website for GPSD where you can find updates, news, and
  26. project mailing lists is: https://gpsd.io/
  27. See that website for a list of GPS units known to be compatible.
  28. See the file INSTALL.adoc for installation instructions and some tips on
  29. how to troubleshoot your installation. The file build.adoc has
  30. instructions for building from source. The packaging/ directory
  31. contains resources and suggestions for packagers and distribution
  32. integrators.
  33. == LICENSE
  34. This software (gpsd) is released under the terms and conditions of the BSD
  35. License, a copy of which is included in the file COPYING.
  36. == 1.X CREDITS
  37. Remco Treffkorn designed and originated the code.
  38. Russ Nelson maintained gpsd for a couple of years.
  39. Carsten Tschach's gpstrans-0.31b code was the original model for nmea_parse.c.
  40. Bob Lorenzini <hwm@netcom.com> provided testing and feedback.
  41. Brook Milligan <brook@trillium.NMSU.Edu> combined gpsd and gpsclient
  42. into one package and autoconfiscated it.
  43. Derrick J. Brashear <shadow@dementia.org> (KB3EGH) added code for the
  44. EarthMate DeLorme. He also added "incredibly gross code to output
  45. NMEA sentences" (his own words :-) He also did the first cut at
  46. DGPS support (see http://www.wsrcc.com/wolfgang/gps/dgps-ip.html),
  47. for the Earthmate.
  48. Curt Mills <BowHunter@mail.com> (WE7U) furthered the dgps support,
  49. writing the portion for other GPS receivers.
  50. None of these people have been active in 2.X and later versions; gpsd
  51. has evolved out of recognition from the 1.X codebase.
  52. == 2.X CREDITS
  53. Eric S. Raymond drastically rewrote this code in late 2004/early 2005
  54. to clean it up and extend it. The 2.X architecture has become
  55. significantly different and far more modularized. His new features
  56. included:
  57. * Documentation (what a concept!)
  58. * Cleaned up, simplified command-line options.
  59. * Now understands the GLL (Geographic position - Latitude, Longitude)
  60. sentence from NMEA 3.0.
  61. * Now parses both the NMEA 3.01 and pre-3.01 variants of the VTG sentence
  62. correctly.
  63. * New commands including 'y', 'w', and 'x', since obsolesced by a
  64. JSON-based protocol.
  65. * Massive refactoring -- one main loop now calls a self-contained
  66. driver object for each type.
  67. * The GPS-bashing code the daemon uses can now be directly linked as a
  68. library, libgpsd(3).
  69. * C and Python libraries are available to encapsulate the client side of
  70. querying gpsd, see libgps(3).
  71. * Cleaned-up error reporting, we don't use syslog when running in the foreground
  72. but send all error and status messages to the tty instead.
  73. * Added -n option to do batch monitoring of GPSes.
  74. * xgpsspeed is working again; xgps has been seriously reworked and improved.
  75. * RPMs which include installation of gpsd to start up at boot time
  76. are available.
  77. * New gpsprobe program probes the capabilities of GPSes and generates
  78. error scattergrams from fixes. (Later this moved to gpsprof.)
  79. * Autobauding, self-configuration, and hotplugging. gpsd can now get
  80. its device from a hotplug script, and figures out itself which baud
  81. rate to use and what the GPS's device type is.
  82. * Support for SiRF binary mode.
  83. * Support for RTCM104 and AIVDM.
  84. * Support for multiple devices.
  85. * Other test tools -- gpsfake, gpscat, gpsmon.
  86. Chris Kuethe <ckuethe@mainframe.cx> maintains the OpenBSD port, shipped
  87. the 2.34 release, is our SiRF and low-level protocols expert, and does a
  88. lot of general hacking and support. He has release authority.
  89. Gary E. Miller <gem@rellim.com> wrote the driver for Garmin binary protocol
  90. and most of the support for PPS handling on serial devices. He has release
  91. authority.
  92. Amaury Jacquot <sxpert@esitcom.org> added DBUS support.
  93. Ville Nuorvala <vnuorval@tcs.hut.fi> wrote the NTRIP support.
  94. We are delighted to acknowledge the assistance of Carl Carter, a field
  95. application engineer at SiRF. He assisted us with the correction and
  96. tuning of the SiRF binary-protocol driver, shedding a good deal of
  97. light on murky aspects of the chip's behavior.
  98. We are also delighted to acknowledge the assistance of Timo Ylhainen, VP of
  99. Software Operations at Fastrax. He clarified some points about
  100. the iTalk protocol, helping to further development of iTalk support.
  101. == 3.X CREDITS
  102. The main feature of the 3.x versions is a stabilized and finalized
  103. version of the JSON command/response protocol. This was designed and
  104. mainly implemented by ESR. Gary E. Miller <gem@rellim.com> wrote the
  105. subframe support, gpsplot, gpscsv, and gpssubframe.
  106. == RESOURCES
  107. *Project web site:* {gpsdweb}
  108. == COPYING
  109. This file is Copyright 2013 by the GPSD project +
  110. SPDX-License-Identifier: BSD-2-clause