Skip to content
Snippets Groups Projects
Commit 83a80355 authored by Florian Obersteiner's avatar Florian Obersteiner :octopus:
Browse files

add traj data info

parent 4a98b85a
No related branches found
No related tags found
1 merge request!10prepare containerization, layout tweaks
......@@ -15,7 +15,7 @@ Types of changes
## TODOs
- set log level via config
- disable the "show trajectories" checkbox if no data
- add sources for BB tagging and ACN background
- investigate if data caching is necessary (load-from-thredds)?
- scatter-plot: plot as line if sufficient data is available?
......@@ -35,6 +35,10 @@ Types of changes
## [Unreleased]
### Added
- trajectory data info
## v0.0.18, 2025-03-31
### Fixed
......
......@@ -263,10 +263,24 @@ def create(df: pd.DataFrame, config: DotDict) -> list:
),
),
),
html.Label(
"BB flagging: BB influence if ACN > (145 ppt + 3*ACN_prc)",
id="flagging-info",
style={"margin-left": "15px", "font-size": "12px"},
html.Div(
children=[
html.Div(
html.Label(
"BB flagging: BB influence if ACN > (145 ppt + 3*ACN_prc)",
id="flagging-info",
style={"margin-left": "15px", "font-size": "12px"},
)
),
html.Div(
html.Label(
"Trajectories: KNMI Trajectory Model TRAJKS, driven by ECMWF re-analysis data",
id="trajectory-info",
style={"margin-left": "15px", "font-size": "12px"},
)
),
],
style={"padding-top": "10px"},
),
]
),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment