moc
Read, write, create and manipulate HEALPix Multi-Order Coverage maps (MOCs), i.e. discretized geomatrical surfaces on the unit sphere.
MOC Lib Rust, the Rust MOC library used in MOCPy, MOCli and MOCWasm.
MOC Lib Rust rely on the CDS HEALPix Rust library.
About
This Rust library implements the v2.0 of the MOC standard, including (S-)MOCs, T-MOCs and ST-MOCs.
It is used in:
- MOCPy, a Python wrapper to manipulate MOCs;
- a standalone command line tool MOCli for linux, MacOS and Windows;
- a WASM library MOCWasm to be used in web browsers.
For tools able to display MOCs, see:
- the Aladin Desktop sky atlas in Java (also supports MOC operations);
- Aladin Lite, "a lightweight version of the Aladin Sky Atlas running in the browser";
- MOCPy scripts, a python wrapper using the very same Rust MOC library.
Release
The github releases section number is the MOCCli and MOCWasm release number.
Install/test
Install rust
(and check that ~/.cargo/bin/
is in your path),
or update the Rust compiler with:
Run tests (with or without seeing stdout
):
Run benches:
Build documentation
Build the library for fast test or final build
# Fast build (large not optimized file)
# Optimized file
Particularities
- The core of this library is very generic
- We implemented lazy, streamed operations:
- an operation between 2 MOCs takes in input 2 iterators and returns an iterator (streaming)
- you can combine operations by combining iterators at no cost; the process start when starting to iterate on the outermost iterator (lazyness)
// Signature of the Union operation between 2 2D-MOCs
Possible Enhancements / Ideas
- Add operations on
RangeMOC2
-
or
-
and
,complement
,fold
, ...
-
- Implement a function dividing a disjoint MOCs into a list of joint MOCs (tip: use the order and the flag of a BMOC, the flag telling is the cell has already been visited).
- Implement the compact notation (bits coding quad-tree traversal) for S-MOCs (binary + ASCII Base 64)
- Implement compact S-MOC: single z-order curve sorted array of indices with a 2 bits flag telling whether the index is a single index, a range lower bound or a range upper bound
- Implement multi-MOC operations resorting to a sweep line (a sweep line is already used in ST-MOC builder from ranges).
- Make a PostgresQL wrapper using e.g. pgx?
License
Like most projects in Rust, this project is licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Acknowledgements
This work has been partly supported by the ESCAPE project.
ESCAPE - The European Science Cluster of Astronomy & Particle Physics ESFRI Research Infrastructures -
has received funding from the European Union’s Horizon 2020 research and innovation programme under Grant Agreement no. 824064.