Skip to main content

leodos_protocols/network/isl/
mod.rs

1/// ISL network addressing (satellite, ground, service area).
2pub mod address;
3/// Area of interest on the satellite grid.
4pub mod aoi;
5/// Geographic coordinate conversions for AOI mapping.
6pub mod geo;
7/// Epidemic gossip protocol for constellation-wide broadcast.
8pub mod gossip;
9/// Projection between geographic and grid coordinates.
10pub mod projection;
11/// Packet routing across the satellite mesh network.
12pub mod routing;
13/// Constellation shell with physical ISL distance calculations.
14pub mod shell;
15/// Toroidal grid topology and direction helpers.
16pub mod torus;