rotastellar

Crates.iorotastellar
lib.rsrotastellar
version0.0.1
created_at2026-01-20 17:47:30.179966+00
updated_at2026-01-20 17:47:30.179966+00
descriptionRust SDK for RotaStellar - Space Computing Infrastructure
homepagehttps://rotastellar.com
repositoryhttps://github.com/rotastellar/rotastellar-rust
max_upload_size
id2057101
size5,287
Subhadip Mitra (bassrehab)

documentation

README

rotastellar

Rust SDK for RotaStellar - Space Computing Infrastructure

Plan, simulate, and operate orbital data centers and space intelligence systems.

🚀 Launching Q1 2026

Installation

[dependencies]
rotastellar = "0.0.1"

Overview

RotaStellar provides tools for:

  • Orbital Compute Suite — Plan and simulate space-based data centers
  • Orbital Intelligence — Track, analyze, and monitor orbital activity

Coming Soon

use rotastellar::OrbitalIntel;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let client = OrbitalIntel::new("api_key")?;

    // Track any satellite
    let iss = client.satellite("ISS").await?;
    let pos = iss.position().await?;
    println!("ISS: {}, {}", pos.lat, pos.lon);

    Ok(())
}

Related Crates

Links

Part of Rota, Inc.

License

MIT License — Copyright (c) 2026 Rota, Inc.

Commit count: 2

cargo fmt