Skip to content

Commit dfe6a74

Browse files
authored
Merge pull request #37 from nav-solutions/migrate_url
Update URL (migration)
2 parents e46f23c + 3a11602 commit dfe6a74

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[submodule "data"]
22
path = data
3-
url = https://github.com/rtk-rs/data
3+
url = https://github.com/nav-solutions/data

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "sp3"
3-
version = "1.3.0"
3+
version = "1.3.1"
44
license = "MPL-2.0"
55
authors = ["Guillaume W. Bres <guillaume.bressaix@gmail.com>"]
66
description = "IGS SP3 file parser"
7-
homepage = "https://github.com/rtk-rs"
8-
repository = "https://github.com/rtk-rs/sp3"
7+
homepage = "https://github.com/nav-solutions"
8+
repository = "https://github.com/nav-solutions/sp3"
99
documentation = "https://docs.rs/sp3/"
1010
keywords = ["gnss", "timing", "gps", "geo"]
1111
categories = ["science", "science::geo", "parsing"]
@@ -54,8 +54,8 @@ thiserror = "2"
5454
itertools = "0.14"
5555
log = { version = "0.4", optional = true }
5656
anise = { version = "0.6", optional = true, features = ["embed_ephem"] }
57-
gnss-rs = { version = "2.4.0", features = ["serde"] }
58-
gnss-qc-traits = { version = "0.3.1", optional = true }
57+
gnss-rs = { version = "2.4", features = ["serde"] }
58+
gnss-qc-traits = { version = "0.3.2", optional = true }
5959
hifitime = { version = "4.1", features = ["serde", "std"] }
6060
nyx-space = { git = "https://github.com/nyx-space/nyx", rev = "a0a4638a8b53302f832791c0d7a26bc64e3166ea", optional = true }
6161

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
11
# SP3
22

33
[![crates.io](https://img.shields.io/crates/v/sp3.svg)](https://crates.io/crates/sp3)
4-
[![Rust](https://github.com/rtk-rs/sp3/actions/workflows/rust.yml/badge.svg)](https://github.com/rtk-rs/sp3/actions/workflows/rust.yml)
5-
[![Rust](https://github.com/rtk-rs/sp3/actions/workflows/daily.yml/badge.svg)](https://github.com/rtk-rs/sp3/actions/workflows/daily.yml)
4+
[![Rust](https://github.com/nav-solutions/sp3/actions/workflows/rust.yml/badge.svg)](https://github.com/nav-solutions/sp3/actions/workflows/rust.yml)
5+
[![Rust](https://github.com/nav-solutions/sp3/actions/workflows/daily.yml/badge.svg)](https://github.com/nav-solutions/sp3/actions/workflows/daily.yml)
66
[![crates.io](https://docs.rs/sp3/badge.svg)](https://docs.rs/sp3/)
77
[![crates.io](https://img.shields.io/crates/d/sp3.svg)](https://crates.io/crates/sp3)
88

99
[![MRSV](https://img.shields.io/badge/MSRV-1.82.0-orange?style=for-the-badge)](https://github.com/rust-lang/rust/releases/tag/1.82.0)
10-
[![License](https://img.shields.io/badge/license-MPL_2.0-orange?style=for-the-badge&logo=mozilla)](https://github.com/rtk-rs/sp3/blob/main/LICENSE)
10+
[![License](https://img.shields.io/badge/license-MPL_2.0-orange?style=for-the-badge&logo=mozilla)](https://github.com/nav-solutions/sp3/blob/main/LICENSE)
1111

12-
SP3 Precise GNSS Orbit file parsing, analysis & production.
12+
SP3 Precise GNSS Orbit file parsing, analysis & production.
1313

1414
This file format is specifid by the [International GNSS Service (IGS)](https://igs.org/products/#orbits_clocks).
1515

16-
NB: this library only supports revisions C & D (latest).
17-
1816
## SP3 files content
1917

2018
SP3 files provide satellite position vector with a high precision (+/- 1mm),

src/lib.rs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
//! SP3 precise orbit file parser.
2-
#![doc(html_logo_url = "https://raw.githubusercontent.com/rtk-rs/.github/master/logos/logo2.jpg")]
2+
#![doc(
3+
html_logo_url = "https://raw.githubusercontent.com/nav-solutions/.github/master/logos/logo2.jpg"
4+
)]
35
#![doc = include_str!("../README.md")]
46
#![cfg_attr(docsrs, feature(doc_cfg))]
57

68
/*
7-
* SP3 is part of the rtk-rs framework.
9+
* SP3 is part of the nav-solutions framework.
810
* Authors: Guillaume W. Bres <guillaume.bressaix@gmail.com> et al.
9-
* (cf. https://github.com/rtk-rs/sp3/graphs/contributors)
11+
* (cf. https://github.com/nav-solutions/sp3/graphs/contributors)
1012
* This framework is shipped under Mozilla Public V2 license.
1113
*
12-
* Documentation: https://github.com/rtk-rs/sp3
14+
* Documentation: https://github.com/nav-solutions/sp3
1315
*/
1416

1517
extern crate gnss_rs as gnss;

src/nyx.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
22
* Authors: Guillaume W. Bres <guillaume.bressaix@gmail.com> et al.
3-
* (cf. https://github.com/rtk-rs/sp3/graphs/contributors)
3+
* (cf. https://github.com/nav-solutions/sp3/graphs/contributors)
44
* This framework is shipped under Mozilla Public V2 license.
55
*
6-
* Documentation: https://github.com/rtk-rs/sp3
6+
* Documentation: https://github.com/nav-solutions/sp3
77
*
88
* The Nyx feature is released under AGPLv3
99
* Copyright (C) 2021-onward Christopher Rabotin <christopher.rabotin@gmail.com> et al. (cf. AUTHORS.md)

0 commit comments

Comments
 (0)