Create a Satellite Telemetry Dashboard.
Display and manage telemetry data from satellites using a defined API and React FrontEnd.
Design and implement a REST API to manage satellite telemetry data.
export default defineConfig({
plugins: [react()],
server: {
proxy: {
'/telemetry': 'http://localhost:5000/',
},
}
})/telemetry endpoint./telemetry: Add a new telemetry entry.{"satelliteId": "string",
"timestamp": "ISO 8601 datetime",
"altitude": "number",
"velocity": "number",
"status": "string"}/telemetry: Retrieve all telemetry data.satelliteId Filter by satellite ID.status Filter by health status (e.g., “healthy”, “critical”)./telemetry/:id Retrieve a specific telemetry entry by ID./telemetry/:id Delete a specific telemetry entry.Design and implement a web interface to display and manage satellite telemetry data.
Expected functionality: