Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions libs/windy-sounding/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history

## 4.1.9 - Feb 16, 2025

- Lower max altitude when zoomed in to ~5200m

## 4.1.8 - Oct 4, 2024

- Drop `@windy.com/devtools` (use a local copy of the types)
Expand Down
4 changes: 2 additions & 2 deletions libs/windy-sounding/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion libs/windy-sounding/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "windy-plugin-fxc-soundings",
"version": "4.1.8",
"version": "4.1.9",
"type": "module",
"private": true,
"description": "Alternative sounding graphs with custom features for PG/HG pilots.",
Expand Down
2 changes: 1 addition & 1 deletion libs/windy-sounding/src/containers/containers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ function Graph({ width, height, skewTWidthPercent }: { width: number; height: nu
const minModelPressure = forecastSlice.selMinModelPressure(state, modelName, location);
const pressureToGhScale = forecastSlice.selPressureToGhScale(state, modelName, location, timeMs);
const minPressure = isZoomedIn
? Math.round(Math.max(pressureToGhScale.invert(6500 + (elevation * 2) / 5), minModelPressure))
? Math.round(Math.max(pressureToGhScale.invert(5200 + (elevation * 2) / 5), minModelPressure))
: minModelPressure;
const maxPressure = Math.min(1000, Math.round(pressureToGhScale.invert((elevation * 4) / 5)));

Expand Down
Loading