Skip to content

Commit ddaca02

Browse files
authored
URL migration (#375)
* URL migration * Bump framework --------- Signed-off-by: Guillaume W. Bres <[email protected]>
1 parent ddb4f69 commit ddaca02

File tree

8 files changed

+25
-20
lines changed

8 files changed

+25
-20
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ When reporting an issue related to one of our libraries, an error log will suffi
99
If your post-processing pipeline is complex and involves very specific data, it may be required
1010
that you provide your input data so we can replicate the problem. To do so, contact us
1111
through one of our portals and we have means to arrange that. If you are willing to do so,
12-
you can directly submit your test data into our [dedicated repo](https://github.com/rtk-rs/data)
12+
you can directly submit your test data into our [dedicated repo](https://github.com/nav-solutions/data)
1313
and we can start replicating the issue right away.

.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

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Use the github portal to submit PR, all contributions are welcomed.
77
Don't forget to run a quick `cargo fmt` prior any submissions, so the CI/CD does not fail
88
on coding style "issues".
99

10-
This crate and ecosystem is part of the [RTK-rs framework and community](https://github.com/rtk-rs).
10+
This crate and ecosystem is part of the [RTK-rs framework and community](https://github.com/nav-solutions).
1111
You can contact us on [Discord](https://discord.com/invite/VwuKPcw6)
1212

1313
Crate architecture

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "rinex"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
license = "MPL-2.0"
55
authors = ["Guillaume W. Bres <[email protected]>"]
66
description = "RINEX file parsing, analysis and production"
7-
homepage = "https://github.com/rtk-rs"
8-
repository = "https://github.com/rtk-rs/rinex"
7+
homepage = "https://github.com/nav-solutions"
8+
repository = "https://github.com/nav-solutions/rinex"
99
keywords = ["geo", "gnss", "gps", "galileo"]
1010
categories = ["science", "science::geo", "parsing"]
1111
edition = "2021"
@@ -133,8 +133,8 @@ bitflags = { version = "2.3", features = ["serde"] }
133133
anise = { version = "0.6", optional = true }
134134
hifitime = { version = "4.1", features = ["serde", "std"] }
135135
wkt = { version = "0.10.0", default-features = false, optional = true }
136-
gnss-rs = { version = "2.4.0", features = ["serde", "domes", "cospar"] }
137-
gnss-qc-traits = { version = "0.3.1", features = ["html"], optional = true }
136+
gnss-rs = { version = "2.4", features = ["serde", "domes", "cospar"] }
137+
gnss-qc-traits = { version = "0.3.2", features = ["html"], optional = true }
138138
serde = { version = "1.0", optional = true, default-features = false, features = ["derive"] }
139139

140140
# Log is optional and our "debug" feature: use this if you're a dev.

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
RINEX
22
=====
33

4-
[![Rust](https://github.com/rtk-rs/rinex/actions/workflows/rust.yml/badge.svg)](https://github.com/rtk-rs/rinex/actions/workflows/rust.yml)
5-
[![Rust](https://github.com/rtk-rs/rinex/actions/workflows/daily.yml/badge.svg)](https://github.com/rtk-rs/rinex/actions/workflows/daily.yml)
4+
[![Rust](https://github.com/nav-solutions/rinex/actions/workflows/rust.yml/badge.svg)](https://github.com/nav-solutions/rinex/actions/workflows/rust.yml)
5+
[![Rust](https://github.com/nav-solutions/rinex/actions/workflows/daily.yml/badge.svg)](https://github.com/nav-solutions/rinex/actions/workflows/daily.yml)
66
[![crates.io](https://docs.rs/rinex/badge.svg)](https://docs.rs/rinex/)
77
[![crates.io](https://img.shields.io/crates/d/rinex.svg)](https://crates.io/crates/rinex)
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/rinex/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/rinex/blob/main/LICENSE)
1111

1212
[RINEX (Receiver Independent EXchange)](https://en.wikipedia.org/wiki/RINEX) parser and formatter.
1313
The RINEX format is fully open source and is specified to answer the requirements of navigation and much more.
1414

1515
To contribute to either of our project or join our community, you way
16-
- open an [Issue on Github.com](https://github.com/rtk-rs/rinex/issues)
17-
- follow our [Discussions on Github.com](https://github.com/rtk-rs/discussions)
16+
- open an [Issue on Github.com](https://github.com/nav-solutions/rinex/issues)
17+
- follow our [Discussions on Github.com](https://github.com/nav-solutions/discussions)
1818
- join our [Discord channel](https://discord.gg/EqhEBXBmJh)
1919

2020
## Advantages :rocket:
@@ -49,7 +49,7 @@ To contribute to either of our project or join our community, you way
4949

5050
If you need to reference this work, please use the following model:
5151

52-
`RTK-rs Team (2025), RINEX: analysis and processing (MPLv2), https://github.com/rtk-rs`
52+
`RTK-rs Team (2025), RINEX: analysis and processing (MPLv2), https://github.com/nav-solutions`
5353

5454
Formats & revisions
5555
===================

src/binex/rnx2bin/mod.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,10 @@ impl<'a> RNX2BIN<'a> {
143143
let mut geo = MonumentGeoRecord::default();
144144
geo.epoch = self.t0;
145145
geo.meta = MonumentGeoMetadata::RNX2BIN;
146-
geo = geo.with_software_name(&format!("rtk-rs/rinex v{}", env!("CARGO_PKG_VERSION")));
146+
geo = geo.with_software_name(&format!(
147+
"nav-solutions/rinex v{}",
148+
env!("CARGO_PKG_VERSION")
149+
));
147150
geo
148151
}
149152
}

src/hatanaka/crinex.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ impl Default for CRINEX {
164164
fn default() -> Self {
165165
Self {
166166
version: Version { major: 3, minor: 0 },
167-
prog: format!("rtk-rs/rinex v{}", env!("CARGO_PKG_VERSION")),
167+
prog: format!("nav-solutions v{}", env!("CARGO_PKG_VERSION")),
168168
date: epoch_now_utc(),
169169
}
170170
}

src/lib.rs

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

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

1517
extern crate num_derive;

0 commit comments

Comments
 (0)