From 8ac501e8dca0d004f252cf54256e79aef3becf44 Mon Sep 17 00:00:00 2001 From: Marcel Date: Tue, 25 Mar 2025 11:39:17 +0100 Subject: [PATCH] [update] add parameter to disable PowBox usage for selected stations also to parameters.yaml, updated style sheets for html --- parameters.yaml | 4 +++- stylesheets/desktop.css | 1 - stylesheets/mobile.css | 3 +-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/parameters.yaml b/parameters.yaml index 519fbaa..4b41238 100644 --- a/parameters.yaml +++ b/parameters.yaml @@ -3,7 +3,7 @@ datapath: "/data/SDS/" # SC3 Datapath networks: ["1Y", "HA", "MK"] # select networks, list or str stations: "*" # select stations, list or str locations: "*" # select locations, list or str -stations_blacklist: ["TEST", "EREA", "DOMV", "LFKM", "GR19", "LAKA"] # exclude these stations +stations_blacklist: ["TEST", "EREA", "DOMV", "LFKM", "GR19", "LAKA", "ATHR", "HAVD"] # exclude these stations networks_blacklist: [] # exclude these networks interval: 60 # Perform checks every x seconds n_track: 360 # wait n_track * intervals before performing an action (i.e. send mail/end highlight status) @@ -117,6 +117,8 @@ data_channels: ["HHZ", "HHN", "HHE"] # ---------------------------------------- OPTIONAL PARAMETERS --------------------------------------------------------- +# deactivate powbox surveillance for stations (e.g. for solar powered), key: station, value: status message (abbr.) +no_pbox_stations: {'GR33': 'SOL'} # add links to html table with specified key as column and value as relative link, interpretable string parameters: # nw (e.g. 1Y), st (e.g. GR01A), nwst_id (e.g. 1Y.GR01A) diff --git a/stylesheets/desktop.css b/stylesheets/desktop.css index f25fc28..ba59cfd 100644 --- a/stylesheets/desktop.css +++ b/stylesheets/desktop.css @@ -1,6 +1,5 @@ body { background-color: #ffffff; - place-items: center; text-align: center; padding-bottom: 30px; font-family: "Helvetica", "sans-serif"; diff --git a/stylesheets/mobile.css b/stylesheets/mobile.css index 10701b6..aeeb416 100644 --- a/stylesheets/mobile.css +++ b/stylesheets/mobile.css @@ -1,6 +1,5 @@ body { background-color: #ffffff; - place-items: center; text-align: center; padding-bottom: 30px; font-family: "Helvetica", "sans-serif"; @@ -20,7 +19,7 @@ th { background-color: #999; color: #fff; border-radius: 3px; - padding: 10px, 2px; + padding: 10px 2px; position: sticky; top: 0; }