Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dsuarezv/satellite-tracker
Javascript 3D satellite tracker library with up-to-date data from CELESTRAK. Uses Three.js, React and satellite.js for orbit prediction.
https://github.com/dsuarezv/satellite-tracker
celestrak international-space-station orbit-prediction reactjs satellite-orbits satellite-tracker threejs
Last synced: 7 days ago
JSON representation
Javascript 3D satellite tracker library with up-to-date data from CELESTRAK. Uses Three.js, React and satellite.js for orbit prediction.
- Host: GitHub
- URL: https://github.com/dsuarezv/satellite-tracker
- Owner: dsuarezv
- License: mit
- Created: 2019-09-12T11:56:50.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-14T15:10:32.000Z (about 1 year ago)
- Last Synced: 2024-10-29T22:56:37.460Z (3 months ago)
- Topics: celestrak, international-space-station, orbit-prediction, reactjs, satellite-orbits, satellite-tracker, threejs
- Language: JavaScript
- Homepage:
- Size: 10.2 MB
- Stars: 158
- Watchers: 2
- Forks: 43
- Open Issues: 3
-
Metadata Files:
- Readme: readme.md
- License: LICENSE.md
Awesome Lists containing this project
README
Satellite tracker
=================Javascript 3D satellite tracker with up-to-date data from CELESTRAK. Uses [Three.js](https://threejs.org/), [React](https://reactjs.org/) and [satellite.js](https://github.com/shashwatak/satellite-js) for orbit prediction.
It is meant as a simple 3D engine that can be used to draw your own satellite orbits. Out of the box it can filter and highlight satellites by name or clicking directly on them, but you can extend / reuse it by looking at the App.js file and loading the satellite set you prefer or changing how orbits are displayed.
[Live DEMO displaying IIS orbit](https://dsuarezv.github.io/satellite-tracker?ss=25544)
[Live DEMO highlighting SpaceX's StarLink constellation](https://dsuarezv.github.io/satellite-tracker?highlight=starlink)
Here is a nice screenshot showing the predicted International Space Station orbit through a day. (Side note, [Why doesn't ISS pass over the polar regions?](https://space.stackexchange.com/questions/5297/why-doesnt-iss-pass-over-the-polar-regions)). The orbits are displayed in the ECEF (Earth Centered Earth Fixed) reference frame.
![International Space Station](screenshots/01.png)
StarLink satellites highlighted in orange, some of them displaying orbits:
![](screenshots/11.png)
Some random satellites selected:
![](screenshots/07.png)
Some COSMOS satellites with orbits. Search and select interface:
![](screenshots/05.png)
Beidou satellites orbits in ECI reference frame. ECI mode can be enabled by setting UseDateSlider = true in App.js. Please note that this mode needs further testing and is not complete yet.
![](screenshots/10.png)
Active objects from CELESTRAK (http://www.celestrak.com/NORAD/elements/active.txt)
![Active satellites](screenshots/02.png)
Here debris from cosmos-2251 in red, active sats in blue, stations in yellow:
![debris](screenshots/04.png)
Installation
============$ git clone https://github.com/dsuarezv/satellite-tracker
$ cd satellite-tracker
$ npm install
$ npm startThat should start a [parcel](https://parceljs.org/) dev server. Browse to http://localhost:1234 to see it in action. In case parcel is not installed, follow instructions on their site. You should be able to run it with this command:
$ parcel index.html