geodesy icon indicating copy to clipboard operation
geodesy copied to clipboard

Rust geodesy

Results 14 geodesy issues
Sort by recently updated
recently updated
newest added

# Problem Currently, *Rust Geodesy* forces input data to be in the form of a slice of `CoordinateTuple`s, which really is forcing the coordinate representation conventions of the library on...

enhancement
wontfix

Move `split_into_steps()` from `inner_op/pipeline.rs` to the *Ancillary functions* section in `op/mod.rs`, and use it as primary building block for the other functions in that section.

Model parallel processing after [this](https://docs.rs/rayon/1.1.0/rayon/slice/trait.ParallelSliceMut.html) example from the [Rayon docs](https://docs.rs/rayon/) ```rust // https://docs.rs/rayon/1.1.0/rayon/slice/trait.ParallelSliceMut.html use rayon::prelude::*; let mut array = [1, 2, 3, 4, 5]; array.par_chunks_mut(2) .for_each(|slice| slice.reverse()); assert_eq!(array, [2, 1,...

See: A MANUAL ON TECHNICAL ASPECTS OF THE UNITED NATIONS CONVENTION ON THE LAW OF THE SEA, Special Publication No. 51 4th Edition - March 2006 Published by the International...

enhancement

Consider algorithms

enhancement

The most recent edition of ISO-19111 "Referencing by coordinates" was published in 2019. Hence, according to ISO's 5 year life cycle of standards, 19111 is up for consideration-of-revision in 2024....

As a question. Should we consider supporting TIFF grids alongside Gravsoft and Ntv2? - https://proj.org/en/9.3/specifications/geodetictiffgrids.html

enhancement

According to the Rust API [guidelines](https://rust-lang.github.io/api-guidelines/naming.html#getter-names-follow-rust-convention-c-getter), when only one thing could be reasonably gotten/sat, the corresponding methods should be named `get` and `set` respectively. Hence the `CoordinateSet` methods `get_coord(i)` and...

enhancement
good first issue

In [PROJ PR 3516](https://github.com/OSGeo/PROJ/pull/3516), @cffk demonstrated new series expansions for the meridian distance. Rust geodesy currently uses an older implementation by B.R.Bowring. As we have already implemented most of the...

enhancement

Explore some roads toward a more smooth handling of parametric and gravity related height systems in ISO 19111/[OGC Topic 2](https://docs.ogc.org/as/18-005r8/18-005r8.pdf), by providing access to some geophysical context. As a start:...

enhancement