Skip to content

Commit 8d56d2a

Browse files
committed
Merge branch 'release/2.17.0'
2 parents 80cc4c4 + 91c6b70 commit 8d56d2a

9 files changed

Lines changed: 201 additions & 173 deletions

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
# Release Notes
22

3+
### Release 2.17.0 (2026-06-24)
4+
- Plot all reported-intensity (macroseismic) points in the Analysis View intensity chart, selected by intensity instead of PGA/PGV thresholds
5+
- Keep the PGA/PGV analysis charts limited to instrumental (seismic) stations
6+
- Hide the "Show Reported Intensity" toggle on the PGA/PGV analysis tabs and reorder controls so "Select Site Class" stays aligned
7+
- Add a per-tab note describing the applied data filters under each analysis chart
8+
- Fix a tooltip crash on macroseismic points caused by the string "null" in PGA/PGV fields
9+
- Remove the unused legacy analysis.html page
10+
- Rename the Analysis View tooltip "MMI" labels to "Intensity"
11+
312
### Release 2.16.0 (2026-06-18)
4-
- . . .
13+
- Update scientific-background-ingv.md
514

615
### Release 2.15.0 (2026-06-15)
716
- Add sortable columns to the Station List tables (seismic and reported intensity)

Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ RUN rm -rf /usr/share/nginx/html/*
1919

2020
# Copy application files to nginx web root
2121
COPY index.html /usr/share/nginx/html/
22-
COPY analysis.html /usr/share/nginx/html/
2322
COPY disclaimer*.md /usr/share/nginx/html/
2423
COPY contributors*.md /usr/share/nginx/html/
2524
COPY scientific-background*.md /usr/share/nginx/html/

analysis.html

Lines changed: 0 additions & 77 deletions
This file was deleted.

docker-entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ if [ "$PROCESS_ALL_DATA_FIRST_TIME" = "true" ]; then
8686
# so that events.json is available quickly and the portal is usable right away.
8787
# The second run rebuilds the full dataset in the background without blocking
8888
# nginx startup — it may take a long time on large data directories.
89-
"$PROCESS_EVENTS_SCRIPT" --data-realtime-dir "$REALTIME_DATA_DIR" -l 20
89+
"$PROCESS_EVENTS_SCRIPT" --data-realtime-dir "$REALTIME_DATA_DIR" -l 20 -x _ri
9090
mapfile -t FULL_REBUILD_ARGS < <(get_full_rebuild_args)
91-
"$PROCESS_EVENTS_SCRIPT" "${FULL_REBUILD_ARGS[@]}" &
91+
"$PROCESS_EVENTS_SCRIPT" "${FULL_REBUILD_ARGS[@]}" -x _ri &
9292

9393
echo "All data processed."
9494
else

index.html

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -142,21 +142,24 @@ <h3>Layers</h3>
142142
</label>
143143
</div>
144144

145-
<!-- Controls moved to same row -->
145+
<!-- Controls moved to same row. "Show Reported Intensity"
146+
comes first so that "Select Site Class" keeps a stable
147+
right-aligned position when the checkbox is hidden on the
148+
PGA/PGV tabs. -->
146149
<div class="analysis-controls-inline">
150+
<div class="control-group" id="dyfiControlGroup">
151+
<label for="dyfiCheck">
152+
<input type="checkbox" id="dyfiCheck">
153+
Show Reported Intensity
154+
</label>
155+
</div>
147156
<div class="control-group">
148157
<label for="selectRegrType">Select Site Class</label>
149158
<select id="selectRegrType" class="custom-select">
150159
<option value="rock">Rock</option>
151160
<option value="soil">Soil</option>
152161
</select>
153162
</div>
154-
<div class="control-group">
155-
<label for="dyfiCheck">
156-
<input type="checkbox" id="dyfiCheck">
157-
Show Reported Intensity
158-
</label>
159-
</div>
160163
</div>
161164
</div>
162165

0 commit comments

Comments
 (0)