1 Star 0 Fork 1

shitou7630/gpsd

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
BSD-2-Clause

gpsd README file

WARNING:

The files at https://gitlab.com/gpsd/gpsd/-/tags are NOT the gpsd release files. DO NOT use them. The release files are at: http://download-mirror.savannah.gnu.org/releases/gpsd/

GENERAL

gpsd is a userland daemon acting as a translator between GPS, GNSS, and AIS receivers and their clients. gpsd listens on port 2947 for clients requesting position/time/velocity information. The receivers are expected to generate position information in a well-known format — as NMEA-0183 sentences, SiRF binary, Rockwell binary, Garmin binary format, or other vendor binary protocols. gpsd takes this information from the GPS and translates it into something uniform and easier to understand for clients. The distribution includes sample clients, application interface libraries, and test/profiling tools.

The website for GPSD where you can find updates, news, and project mailing lists is: https://gpsd.io/

See that website for a list of GPS units known to be compatible.

See the file INSTALL.adoc for installation instructions and some tips on how to troubleshoot your installation. The file build.adoc has instructions for building from source. The packaging/ directory contains resources and suggestions for packagers and distribution integrators.

LICENSE

This software (gpsd) is released under the terms and conditions of the BSD License, a copy of which is included in the file COPYING.

1.X CREDITS

Remco Treffkorn designed and originated the code.

Russ Nelson maintained gpsd for a couple of years.

Carsten Tschach’s gpstrans-0.31b code was the original model for nmea_parse.c.

Bob Lorenzini <[email protected]> provided testing and feedback.

Brook Milligan <[email protected]> combined gpsd and gpsclient into one package and autoconfiscated it.

Derrick J. Brashear <[email protected]> (KB3EGH) added code for the EarthMate DeLorme. He also added "incredibly gross code to output NMEA sentences" (his own words :-) He also did the first cut at DGPS support (see http://www.wsrcc.com/wolfgang/gps/dgps-ip.html), for the Earthmate.

Curt Mills <[email protected]> (WE7U) furthered the dgps support, writing the portion for other GPS receivers.

None of these people have been active in 2.X and later versions; gpsd has evolved out of recognition from the 1.X codebase.

2.X CREDITS

Eric S. Raymond drastically rewrote this code in late 2004/early 2005 to clean it up and extend it. The 2.X architecture has become significantly different and far more modularized. His new features included:

  • Documentation (what a concept!)

  • Cleaned up, simplified command-line options.

  • Now understands the GLL (Geographic position - Latitude, Longitude) sentence from NMEA 3.0.

  • Now parses both the NMEA 3.01 and pre-3.01 variants of the VTG sentence correctly.

  • New commands including 'y', 'w', and 'x', since obsolesced by a JSON-based protocol.

  • Massive refactoring — one main loop now calls a self-contained driver object for each type.

  • The GPS-bashing code the daemon uses can now be directly linked as a library, libgpsd(3).

  • C and Python libraries are available to encapsulate the client side of querying gpsd, see libgps(3).

  • Cleaned-up error reporting, we don’t use syslog when running in the foreground but send all error and status messages to the tty instead.

  • Added -n option to do batch monitoring of GPSes.

  • xgpsspeed is working again; xgps has been seriously reworked and improved.

  • RPMs which include installation of gpsd to start up at boot time are available.

  • New gpsprobe program probes the capabilities of GPSes and generates error scattergrams from fixes. (Later this moved to gpsprof.)

  • Autobauding, self-configuration, and hotplugging. gpsd can now get its device from a hotplug script, and figures out itself which baud rate to use and what the GPS’s device type is.

  • Support for SiRF binary mode.

  • Support for RTCM104 and AIVDM.

  • Support for multiple devices.

  • Other test tools — gpsfake, gpscat, gpsmon.

Chris Kuethe <[email protected]> maintains the OpenBSD port, shipped the 2.34 release, is our SiRF and low-level protocols expert, and does a lot of general hacking and support. He has release authority.

Gary E. Miller <[email protected]> wrote the driver for Garmin binary protocol and most of the support for PPS handling on serial devices. He has release authority.

Amaury Jacquot <[email protected]> added DBUS support.

Ville Nuorvala <[email protected]> wrote the NTRIP support.

We are delighted to acknowledge the assistance of Carl Carter, a field application engineer at SiRF. He assisted us with the correction and tuning of the SiRF binary-protocol driver, shedding a good deal of light on murky aspects of the chip’s behavior.

We are also delighted to acknowledge the assistance of Timo Ylhainen, VP of Software Operations at Fastrax. He clarified some points about the iTalk protocol, helping to further development of iTalk support.

3.X CREDITS

The main feature of the 3.x versions is a stabilized and finalized version of the JSON command/response protocol. This was designed and mainly implemented by ESR. Gary E. Miller <[email protected]> wrote the subframe support, gpsplot, gpscsv, and gpssubframe.

RESOURCES

Project web site: {gpsdweb}

COPYING

This file is Copyright 2013 by the GPSD project
SPDX-License-Identifier: BSD-2-clause

Valid-License-Identifier: BSD-2-Clause SPDX-URL: https://spdx.org/licenses/BSD-2-Clause.html Usage-Guide: To use the BSD 2-clause "Simplified" License put the following SPDX tag/value pair into a comment according to the placement guidelines in the licensing rules documentation: SPDX-License-Identifier: BSD-2-Clause License-Text: Copyright (c) <year> <owner> . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

简介

gpsd is a service daemon that monitors one or more GNSS (GPS) or AIS receivers attached to a host computer through serial or USB ports. 展开 收起
BSD-2-Clause
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/shitou7630/gpsd.git
[email protected]:shitou7630/gpsd.git
shitou7630
gpsd
gpsd
master

搜索帮助