+
+ Lat, Lon
+
+ {iss
+ ? `${iss.latitude.toFixed(COORDS_DECIMALS)}°, ${iss.longitude.toFixed(COORDS_DECIMALS)}°`
+ : '—'}
+
+
+
+ Alt
+
+ {iss ? `${iss.altitude.toFixed(ALT_DECIMALS)} km` : '—'}
+
+
+
+ Vel
+
+ {iss ? `${Math.round(iss.velocity).toLocaleString()} km/h` : '—'}
+
+
+
+ Next Pass
+ —
+
+
+ )
+}
+
+ISSPanel.displayName = 'ISSPanel'