Skip to content

Commit f060123

Browse files
authored
Repo update: move sources (#36)
Signed-off-by: Guillaume W. Bres <[email protected]>
1 parent 35d5665 commit f060123

File tree

6 files changed

+22
-11
lines changed

6 files changed

+22
-11
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CGGTTS
44
Rust package to parse and generate CGGTTS data.
55

66
[![crates.io](https://img.shields.io/crates/v/cggtts.svg)](https://crates.io/crates/cggtts)
7-
[![Rust](https://github.com/gwbres/cggtts/actions/workflows/rust.yml/badge.svg)](https://github.com/gwbres/cggtts/actions/workflows/rust.yml)
7+
[![Rust](https://github.com/rtk-rs/cggtts/actions/workflows/rust.yml/badge.svg)](https://github.com/rtk-rs/cggtts/actions/workflows/rust.yml)
88
[![crates.io](https://docs.rs/cggtts/badge.svg)](https://docs.rs/cggtts/)
99
[![crates.io](https://img.shields.io/crates/d/cggtts.svg)](https://crates.io/crates/cggtts)
1010

@@ -26,7 +26,7 @@ This library only supports revision **2E**, and will _reject_ other revisions.
2626
- `cggtts` is the main library. Compile it with the _scheduler_ option to unlock
2727
full support of CGGTTS data production
2828
- `cggtts-cli` is an application to analyze one or compare two CGGTTS files.
29-
Download its latest release from the [github portal](https://github.com/gwbres/cggtts/releases).
29+
Download its latest release from the [github portal](https://github.com/rtk-rs/cggtts/releases).
3030

3131
## Ecosystem
3232

cggtts-cli/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "cggtts-cli"
33
version = "1.2.0"
4-
license = "MIT OR Apache-2.0"
4+
license = "MPL-2.0"
55
authors = ["Guillaume W. Bres <[email protected]>"]
66
description = "Command line tool parse and analyze CGGTTS data"
7-
homepage = "https://github.com/gwbres/cggtts"
7+
homepage = "https://github.com/rtk-rs"
88
keywords = ["parser", "gps", "glonass", "galileo", "timing"]
99
categories = ["science", "command-line-interface", "command-line-utilities"]
1010
edition = "2018"
@@ -19,4 +19,3 @@ plotly = "0.8"
1919
clap = { version = "4.4.6", features = ["derive", "color"] }
2020
serde = { version = "1", default-features = false, features = ["derive"] }
2121
cggtts = { path = "../cggtts", version = "=4.2.0" }
22-
# plotly = { git = "https://github.com/gwbres/plotly", branch = "density-mapbox" }

cggtts-cli/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ CGGTTS cli
44
Command line tool to analyze and parse CGGTTS data
55

66
[![crates.io](https://img.shields.io/crates/v/cggtts-cli.svg)](https://crates.io/crates/cggtts-cli)
7-
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/gwbres/cggtts/blob/main/LICENSE-APACHE)
8-
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/gwbres/cggtts/blob/main/LICENSE-MIT)
7+
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/rtk-rs/cggtts/blob/main/LICENSE-APACHE)
8+
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/rtk-rs/cggtts/blob/main/LICENSE-MIT)
99
[![crates.io](https://img.shields.io/crates/d/cggtts.svg)](https://crates.io/crates/cggtts)
10-
[![Rust](https://github.com/gwbres/cggtts/actions/workflows/rust.yml/badge.svg)](https://github.com/gwbres/cggtts/actions/workflows/rust.yml)
10+
[![Rust](https://github.com/rtk-rs/cggtts/actions/workflows/rust.yml/badge.svg)](https://github.com/rtk-rs/cggtts/actions/workflows/rust.yml)
1111
[![crates.io](https://docs.rs/cggtts/badge.svg)](https://docs.rs/cggtts/badge.svg)
1212

1313

cggtts/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
[package]
22
name = "cggtts"
33
version = "4.2.0"
4-
license = "MIT OR Apache-2.0"
4+
license = "MPL-2.0"
55
authors = ["Guillaume W. Bres <[email protected]>"]
66
description = "Package to analyze and create CGGTTS data"
7-
homepage = "https://github.com/gwbres/cggtts"
7+
homepage = "https://github.com/rtk-rs"
8+
repository = "https://github.com/rtk-rs/cggtts"
89
keywords = ["positionning","bipm","gnss","timing","satellites"]
910
categories = ["science","parsing"]
1011
edition = "2018"

cggtts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CGGTTS
44
Rust library to parse and generate CGGTTS data.
55

66
[![crates.io](https://img.shields.io/crates/v/cggtts.svg)](https://crates.io/crates/cggtts)
7-
[![Rust](https://github.com/gwbres/cggtts/actions/workflows/rust.yml/badge.svg)](https://github.com/gwbres/cggtts/actions/workflows/rust.yml)
7+
[![Rust](https://github.com/rtk-rs/cggtts/actions/workflows/rust.yml/badge.svg)](https://github.com/rtk-rs/cggtts/actions/workflows/rust.yml)
88
[![crates.io](https://docs.rs/cggtts/badge.svg)](https://docs.rs/cggtts/badge.svg)
99
[![crates.io](https://img.shields.io/crates/d/cggtts.svg)](https://crates.io/crates/cggtts)
1010

cggtts/src/lib.rs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
#![doc(html_logo_url = "https://raw.githubusercontent.com/rtk-rs/.github/master/logos/logo2.jpg")]
12
#![doc = include_str!("../README.md")]
23
#![cfg_attr(docsrs, feature(doc_cfg))]
4+
35
//! CGGTTS is the core structure, it comprises
46
//! the list of tracks (measurements) and some header information.
57
//! ```
@@ -115,6 +117,15 @@
115117
//! - ionospheric parameter estimates
116118
//! - specify carrier dependent delays [see Delay]
117119
120+
/*
121+
* CGGTTS is part of the rtk-rs framework.
122+
* Authors: Guillaume W. Bres <[email protected]> et al.
123+
* (cf. https://github.com/rtk-rs/cggtts/graphs/contributors)
124+
* This framework is shipped under Mozilla Public V2 license.
125+
*
126+
* Documentation: https://github.com/rtk-rs/cggtts
127+
*/
128+
118129
mod crc;
119130
mod rcvr;
120131
mod reference_time;

0 commit comments

Comments
 (0)