|
7 | 7 | // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
|
8 | 8 | // EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
|
9 | 9 | // WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
|
10 |
| -//! `swiftnav-rs` is a library that implements GNSS utility functions to perform |
11 |
| -//! position estimations. The data used by `swiftnav-rs` typically comes from GNSS |
12 |
| -//! receiver chips as raw observation and ephemeris data. `swiftnav-rs` is more of |
| 10 | +//! `swiftnav` is a library that implements GNSS utility functions to perform |
| 11 | +//! position estimations. The data used by `swiftnav` typically comes from GNSS |
| 12 | +//! receiver chips as raw observation and ephemeris data. `swiftnav` is more of |
13 | 13 | //! a "bring your own algorithm" library, it provides a bunch of functionality that
|
14 | 14 | //! is useful when processing raw GNSS data, but it provides only limited position
|
15 | 15 | //! estimation capabilities. Each module encompasses a single set of functionality,
|
|
23 | 23 | //! transmission and the delays of the messages the receiver is able to determine
|
24 | 24 | //! the location of itself in relation to the satellites.
|
25 | 25 | //!
|
26 |
| -//! `swiftnav-rs` does not provide any functionality for communicating with |
| 26 | +//! `swiftnav` does not provide any functionality for communicating with |
27 | 27 | //! receivers made by Swift Navigation, or any manufacturer.
|
28 | 28 | //! [libsbp](https://github.com/swift-nav/libsbp) is the library to use if you
|
29 | 29 | //! want to communicate with receivers using Swift Binary Protocol (SBP).
|
30 | 30 | //!
|
31 | 31 | //! ## Time
|
32 |
| -//! Time is a very important aspect of GNSS. `swiftnav-rs` defaults to representing |
| 32 | +//! Time is a very important aspect of GNSS. `swiftnav` defaults to representing |
33 | 33 | //! all times as GPS times. It provides the ability to manipulate GPS time stamps,
|
34 | 34 | //! as well as means to convert a GPS time stamp into various other time bases
|
35 | 35 | //! (GLONASS time, UTC, MJD).
|
|
47 | 47 | //!
|
48 | 48 | //! ## Troposphere and Ionosphere
|
49 | 49 | //! Two major sources of signal error in GNSS are the troposphere and ionosphere.
|
50 |
| -//! `swiftnav-rs` provides the ability to decode and use the broadcast Klobuchar |
| 50 | +//! `swiftnav` provides the ability to decode and use the broadcast Klobuchar |
51 | 51 | //! ionosphere model. An implementation of the UNM3m troposphere model is also
|
52 | 52 | //! provided.
|
53 | 53 | //!
|
|
0 commit comments