Thomas Knudsen

Results 16 issues of Thomas Knudsen

Gie needs help to handle unusual axis orders for operations giving angular output.

bug
enhancement

# 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

In a comment under #4042, @mwtoews says: > Listing ellipsoids could potentially show a similar message. with regard to freezing the hard coded ellipsoid elements. But for now, `ellps` defaults...

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....

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