Satellite Visualizer is a web application that provides real-time satellite visualization, allowing users to track satellites using their NORAD ID and view their orbits dynamically over time. It integrates Java and Spring Boot on the backend to fetch satellite data via the N2YO API, calculates geodetic coordinates, and stores satellite information in a MongoDB database. The frontend, built with React and CesiumJS, enables users to input satellite IDs and visualize their trajectories over time.
- Java – Core logic and calculations
- Spring Boot – REST API implementation and data retrieval
- MongoDB – Database for satellite records and attributes
- N2YO API – Satellite TLE data source
- React – UI and component-based interaction
- CesiumJS – 3D visualization and orbital tracking
- Login to your MongoDB account here.
- Look for a popup to add your current IP address, and click Add Current IP Address.
- Navigate to the MongoDBCompass application on your computer, and click the Add New Connection button.
- Enter the connection string (ask Claire for db_password and replace this, delete brackets): mongodb+srv://TeamTech:<db_password>@cluster0.5qgsy.mongodb.net/
- Click Save and Connect.
- You should now be able to see the satellites collection.
-
Open IntelliJ on your computer, and click New Project on the Welcome screen. Navigate to the location where the satellite-visualizer was cloned, and click on satellitevisualizer-backend then OK.
-
Click Run (green triangle in top right).
-
To test out the N2YO API, you can enter this URL in your browser: https://api.n2yo.com/rest/v1/satellite/tle/{noradId}&apiKey=your-api-key. Replace {noradId} with any satellite's noradId, like 25544 for the ISS, and your-api-key with your own N2YO API key. If you do not have one, you can sign up for an account on the N2YO website.
To test out the Spring Boot Endpoint, you can enter this URL: http://localhost:8080/api/satellite/fetch-and-save/{noradId}. Don't forget to also replace the {noradId}.
- Open VS Code and click File > Open Folder and navigate to the location where the satellite-visualizer was cloned, and click on satellitevisualizer-frontend.
- Open the terminal by clicking View > Terminal, and run npm start.
Thank you for your interest! We welcome all improvements to this project to make it more useful to users. Check out the Contribution Guide for instructions on how to contirbute.