Satellite tracking TUI using ratatui

L (license) + typo + contributions (did ask)

+3 -3
Cargo.lock
···
[[package]]
name = "chrono"
-
version = "0.4.40"
+
version = "0.4.41"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c"
+
checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
dependencies = [
"android-tzdata",
"iana-time-zone",
···
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
[[package]]
-
name = "sattelite_observers"
+
name = "satellite_observers"
version = "0.1.0"
dependencies = [
"chrono",
+1 -1
Cargo.toml
···
[package]
-
name = "sattelite_observers"
+
name = "satellite_observers"
version = "0.1.0"
edition = "2024"
+7
LICENSE
···
+
Copyright © 2025 technoduck.me
+
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+10
README.md
···
# Satellite observatory
+
(yes i'm aware of the typo)
+
+
Inspired by my previous project [iss_locator.rs](https://tangled.sh/@technoduck.me/iss_locator.rs), and the indomitable human spirit,
its an interactive program displaying the current location of the ISS.
···
While the code for now is a bit ISS specific other satellites can be easily added, by fetching their TLE and doing the same calculations.
+
- [ ] Transform location update to inline calculation, it's not that costly async can be reserved for the TLE fetching.
+
- [ ] general cleanup
+
## Contributions?
+
If you want a symbolic (or not) contribution, the easiest would be to ~~dox yourself~~ add a city!
+
They are all held in a `pub const CITIES` in `app.rs`. Adding a city is as easy as adding another line with your chosen location name, and longitude and lattitude (decimal).
+
+
The ISS visibility status is in the works, but the `City` struct should not change.