diff --git a/src/App.jsx b/src/App.jsx index 0a1c7b02..7c0938d7 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -321,7 +321,7 @@ const App = () => { const propagation = usePropagation(config.location, dxLocation, config.propagation); const mySpots = useMySpots(config.callsign); - const satellites = useSatellites(config.location); + const satellites = useSatellites(config.location, config.satellite); const localWeather = useWeather(config.location, config.allUnits); const dxWeather = useWeather(dxLocation, config.allUnits); const localAlerts = useWeatherAlerts(config.location); diff --git a/src/DockableApp.jsx b/src/DockableApp.jsx index b07b4d99..e057b0d0 100644 --- a/src/DockableApp.jsx +++ b/src/DockableApp.jsx @@ -661,6 +661,7 @@ export const DockableApp = ({ const renderWorldMap = () => (
+ + {/* station altitude and minimum elevation inputs */} +
+
+ + + setStationAlt(isNaN(e.target.valueAsNumber) ? 100 : e.target.valueAsNumber) + } + style={{ + width: '100%', + padding: '10px', + background: 'var(--bg-tertiary)', + border: '1px solid var(--border-color)', + borderRadius: '6px', + color: 'var(--text-primary)', + fontSize: '14px', + fontFamily: 'JetBrains Mono, monospace', + boxSizing: 'border-box', + }} + /> +
+
+ + setMinElev(isNaN(e.target.valueAsNumber) ? 5.0 : e.target.valueAsNumber)} + style={{ + width: '100%', + padding: '10px', + background: 'var(--bg-tertiary)', + border: '1px solid var(--border-color)', + borderRadius: '6px', + color: 'var(--text-primary)', + fontSize: '14px', + fontFamily: 'JetBrains Mono, monospace', + boxSizing: 'border-box', + }} + /> +
+
+ {/* Lead Time Slider WIP