Getting Started
このコンテンツはまだ日本語訳がありません。
Installation
Section titled “Installation”Clone the repository and build:
git clone https://github.com/sksat/orts.gitcd ortscargo build --workspaceRunning the Simulator
Section titled “Running the Simulator”Run a simulation and output CSV:
cargo run --bin ortsStarting the Viewer
Section titled “Starting the Viewer”Start the WebSocket server with the embedded viewer:
cargo run --bin orts -- --serveThen open http://localhost:9001 in your browser.
Custom Parameters
Section titled “Custom Parameters”# Higher altitude orbit with larger time stepcargo run --bin orts -- --serve --altitude 800 --dt 5
# Fine time step with decimated outputcargo run --bin orts -- --serve --dt 1 --output-interval 10Project Structure
Section titled “Project Structure”| Crate | Description |
|---|---|
orts | Core orbital mechanics library |
orts-cli | CLI and WebSocket server |
arika | Geodesy and coordinate transforms |
utsuroi | ODE numerical integrators |
tobari | Atmosphere models |
uneri | DuckDB + uPlot charting library |
viewer | React + Three.js 3D visualization |