https://github.com/sanand0/iss-location
Tracks the International Space Station position. A demo of how to use GitHub Actions to schedule commits weekly.
https://github.com/sanand0/iss-location
data
Last synced: 4 months ago
JSON representation
Tracks the International Space Station position. A demo of how to use GitHub Actions to schedule commits weekly.
- Host: GitHub
- URL: https://github.com/sanand0/iss-location
- Owner: sanand0
- Created: 2024-12-30T01:00:30.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-02-07T12:15:34.000Z (5 months ago)
- Last Synced: 2026-02-07T21:23:51.967Z (5 months ago)
- Topics: data
- Homepage:
- Size: 306 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ISS Location Data Collection
Automated collection of International Space Station (ISS) position data using GitHub Actions. The data is collected daily at 12:00 UTC and stored in JSONL format.
- Data provided by [Open Notify](http://open-notify.org/)
- Powered by [GitHub Actions](https://github.com/features/actions)
## Data Collection
- **Frequency**: Daily at 12:00 UTC
- **Source**: [Open Notify ISS Position API](http://api.open-notify.org/iss-now.json)
- **Format**: JSONL (JSON Lines)
- **Storage**: `iss-location.jsonl`
## Data Format
Each line in the JSONL file looks like this:
```json
{
"message": "success",
"iss_position": {"latitude": "0.5776", "longitude": "131.0008"},
"timestamp": 1735520294
}
```
## License
[MIT](https://opensource.org/license/mit)