Skip to content

Commit dc1eca4

Browse files
author
amychenn
committed
Fix CI issues: update Cesium, add package-lock.json, fix linting
- Removed non-existent @cesium/engine package - Updated cesium to ^1.123.0 - Added package-lock.json for reproducible builds - Fixed unused import in orbit_propagator.py
1 parent 90092eb commit dc1eca4

File tree

3 files changed

+7563
-4
lines changed

3 files changed

+7563
-4
lines changed

backend/core-orbits/app/services/orbit_propagator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
at any given time.
1212
"""
1313
from datetime import datetime, timezone
14-
from typing import Dict, Any, Optional, Tuple
14+
from typing import Dict, Any, Tuple
1515
import math
1616

1717
from sgp4.api import Satrec, jday
@@ -187,7 +187,7 @@ def _eci_to_geodetic(
187187
Tuple of (latitude_deg, longitude_deg, altitude_km)
188188
"""
189189
# Earth rotation rate (rad/s)
190-
omega_earth = 7.2921150e-5
190+
_omega_earth = 7.2921150e-5 # noqa: F841 - kept for documentation
191191

192192
# Calculate Greenwich Mean Sidereal Time (GMST)
193193
# This is a simplified calculation

0 commit comments

Comments
 (0)