Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
IRISCC-Dashboard
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KIT
imkasf-top
IRISCC-Dashboard
Commits
bb887fbf
Commit
bb887fbf
authored
1 week ago
by
Florian Obersteiner
Browse files
Options
Downloads
Patches
Plain Diff
add second y plot
parent
26a497f2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!6
fail if no data, secondary y
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
main.py
+45
-13
45 additions, 13 deletions
main.py
src/layout.py
+39
-2
39 additions, 2 deletions
src/layout.py
with
84 additions
and
15 deletions
main.py
+
45
−
13
View file @
bb887fbf
...
...
@@ -12,6 +12,7 @@ import pandas as pd
import
plotly.graph_objects
as
go
from
dash
import
Dash
from
dash.dependencies
import
Input
,
Output
from
plotly.subplots
import
make_subplots
from
src.config
import
DotDict
,
get_latest_semantic_version_tag
from
src.data
import
load_from_disk
,
load_from_thredds
...
...
@@ -43,7 +44,7 @@ data, ap_info = (
else
load_from_disk
(
Path
(
"
./testdata
"
).
glob
(
"
*.nc
"
),
appconfig
,
airportsconfig
,
True
)
# type: ignore
)
log
.
debug
(
f
"
Data loaded. Used THREDDS:
{
appconfig
.
USE_THREDDS
}
"
)
log
.
debug
(
f
"
Data size:
{
data
.
info
()
}
"
)
#
log.debug(f"Data size: {data.info()}")
app
.
layout
=
create_layout
(
data
,
appconfig
)
server
=
app
.
server
# for deployment via gunicorn / WSGI server
...
...
@@ -55,13 +56,27 @@ server = app.server # for deployment via gunicorn / WSGI server
Output
(
"
fig-ts
"
,
"
figure
"
),
Output
(
"
flight-dep-dest
"
,
"
children
"
),
Output
(
"
var-info
"
,
"
children
"
),
Output
(
"
second-var-info
"
,
"
children
"
),
],
[
Input
(
"
flight-dropdown
"
,
"
value
"
),
Input
(
"
variable-dropdown
"
,
"
value
"
),
Input
(
"
second-variable-dropdown
"
,
"
value
"
),
],
[
Input
(
"
flight-dropdown
"
,
"
value
"
),
Input
(
"
variable-dropdown
"
,
"
value
"
)],
)
def
update_plots
(
selected_flight
:
int
,
selected
_variable
:
str
):
def
update_plots
(
selected_flight
:
int
,
primary_variable
:
str
,
secondary
_variable
:
str
):
filtered_df
=
data
[
data
[
"
flight_number
"
]
==
selected_flight
]
valid_indices
=
filtered_df
[
selected_variable
].
notna
()
unit
=
varconfig
.
loc
[
selected_variable
,
:].
Unit
valid_indices
=
filtered_df
[
primary_variable
].
notna
()
unit_primary
=
varconfig
.
loc
[
primary_variable
,
:].
Unit
lname_primary
=
(
varconfig
.
loc
[
primary_variable
,
:].
Long_Name
,)
unit_secondary
=
(
varconfig
.
loc
[
secondary_variable
,
:].
Unit
if
secondary_variable
in
varconfig
.
index
else
"
-
"
)
lname_secondary
=
(
varconfig
.
loc
[
secondary_variable
,
:].
Long_Name
if
secondary_variable
in
varconfig
.
index
else
""
)
fig_map
=
go
.
Figure
(
go
.
Scattermap
(
...
...
@@ -69,17 +84,17 @@ def update_plots(selected_flight: int, selected_variable: str):
lat
=
filtered_df
.
loc
[
valid_indices
,
"
lat
"
],
mode
=
"
markers
"
,
marker
=
{
"
color
"
:
filtered_df
.
loc
[
valid_indices
,
selected
_variable
],
"
color
"
:
filtered_df
.
loc
[
valid_indices
,
primary
_variable
],
"
colorscale
"
:
"
Rainbow
"
,
"
colorbar
"
:
{
"
x
"
:
0.995
,
"
title
"
:
{
"
text
"
:
f
"
{
selected
_variable
}
{
unit
}
"
,
"
side
"
:
"
right
"
},
"
title
"
:
{
"
text
"
:
f
"
{
primary
_variable
}
{
unit
_primary
}
"
,
"
side
"
:
"
right
"
},
},
"
showscale
"
:
True
,
},
connectgaps
=
False
,
hoverinfo
=
"
text
"
,
hovertext
=
[
f
"
{
v
:
.
1
f
}
"
for
v
in
filtered_df
[
selected
_variable
]],
hovertext
=
[
f
"
{
v
:
.
1
f
}
"
for
v
in
filtered_df
[
primary
_variable
]],
name
=
"
Flight Path
"
,
)
)
...
...
@@ -117,11 +132,11 @@ def update_plots(selected_flight: int, selected_variable: str):
showlegend
=
False
,
)
fig_ts
=
go
.
Figure
(
)
fig_ts
=
make_subplots
(
specs
=
[[{
"
secondary_y
"
:
True
}]]
)
fig_ts
.
add_trace
(
go
.
Scatter
(
x
=
filtered_df
.
index
[
valid_indices
&
~
filtered_df
[
"
BB_flag
"
]],
y
=
filtered_df
.
loc
[
valid_indices
&
~
filtered_df
[
"
BB_flag
"
],
selected
_variable
],
y
=
filtered_df
.
loc
[
valid_indices
&
~
filtered_df
[
"
BB_flag
"
],
primary
_variable
],
mode
=
"
markers
"
,
marker
=
{
"
size
"
:
3
,
...
...
@@ -134,7 +149,7 @@ def update_plots(selected_flight: int, selected_variable: str):
fig_ts
.
add_trace
(
go
.
Scatter
(
x
=
filtered_df
.
index
[
valid_indices
&
filtered_df
[
"
BB_flag
"
]],
y
=
filtered_df
.
loc
[
valid_indices
&
filtered_df
[
"
BB_flag
"
],
selected
_variable
],
y
=
filtered_df
.
loc
[
valid_indices
&
filtered_df
[
"
BB_flag
"
],
primary
_variable
],
mode
=
"
markers
"
,
marker
=
{
"
size
"
:
3
,
...
...
@@ -144,6 +159,21 @@ def update_plots(selected_flight: int, selected_variable: str):
name
=
"
flagged
'
biomass burning
'"
,
)
)
if
secondary_variable
!=
"
None
"
:
fig_ts
.
add_trace
(
go
.
Scatter
(
x
=
filtered_df
.
index
,
y
=
filtered_df
[
secondary_variable
],
mode
=
"
markers
"
,
marker
=
{
"
size
"
:
2
,
"
color
"
:
"
black
"
,
"
showscale
"
:
False
,
},
name
=
secondary_variable
,
),
secondary_y
=
True
,
)
fig_ts
.
update_layout
(
paper_bgcolor
=
"
#e8e8e8
"
,
...
...
@@ -160,13 +190,15 @@ def update_plots(selected_flight: int, selected_variable: str):
)
fig_ts
.
update_xaxes
(
title
=
"
UTC
"
)
fig_ts
.
update_yaxes
(
title
=
f
"
{
selected_variable
}
{
unit
}
"
)
fig_ts
.
update_yaxes
(
title
=
f
"
{
primary_variable
}
{
unit_primary
}
"
)
fig_ts
.
update_yaxes
(
title
=
f
"
{
secondary_variable
}
{
unit_secondary
}
"
,
secondary_y
=
True
)
return
[
fig_map
,
fig_ts
,
ap_info
[
selected_flight
],
varconfig
.
loc
[
selected_variable
,
:].
Long_Name
,
lname_primary
,
lname_secondary
,
]
...
...
This diff is collapsed.
Click to expand it.
src/layout.py
+
39
−
2
View file @
bb887fbf
...
...
@@ -34,6 +34,7 @@ def create_layout(df: pd.DataFrame, config: DotDict) -> list:
for
c
in
df
.
columns
if
c
not
in
[
"
flight_number
"
,
"
date
"
,
"
BB_flag
"
]
]
var_sel_idx
=
0
for
idx
,
vo
in
enumerate
(
var_opts
):
if
vo
[
"
label
"
]
==
"
ACN
"
:
...
...
@@ -90,7 +91,7 @@ def create_layout(df: pd.DataFrame, config: DotDict) -> list:
children
=
[
html
.
Label
(
"
Flight:
"
,
style
=
{
"
font-weight
"
:
"
bold
"
,
"
margin-right
"
:
"
2
9px
"
},
style
=
{
"
font-weight
"
:
"
bold
"
,
"
margin-right
"
:
"
3
9px
"
},
),
dcc
.
Dropdown
(
id
=
"
flight-dropdown
"
,
...
...
@@ -121,7 +122,7 @@ def create_layout(df: pd.DataFrame, config: DotDict) -> list:
children
=
[
html
.
Label
(
"
Variable:
"
,
style
=
{
"
font-weight
"
:
"
bold
"
,
"
margin-right
"
:
"
1
0px
"
},
style
=
{
"
font-weight
"
:
"
bold
"
,
"
margin-right
"
:
"
2
0px
"
},
),
dcc
.
Dropdown
(
id
=
"
variable-dropdown
"
,
...
...
@@ -147,6 +148,37 @@ def create_layout(df: pd.DataFrame, config: DotDict) -> list:
"
align-items
"
:
"
center
"
,
},
),
html
.
Div
(
id
=
"
second-variable-select
"
,
children
=
[
html
.
Label
(
"
Secondary:
"
,
style
=
{
"
font-weight
"
:
"
bold
"
,
"
margin-right
"
:
"
10px
"
},
),
dcc
.
Dropdown
(
id
=
"
second-variable-dropdown
"
,
options
=
([{
"
value
"
:
"
None
"
,
"
label
"
:
"
(None)
"
}]
+
var_opts
),
# type: ignore
value
=
"
None
"
,
# type: ignore
clearable
=
False
,
searchable
=
True
,
style
=
{
"
display
"
:
"
inline-block
"
,
"
width
"
:
"
190px
"
,
},
),
html
.
Label
(
""
,
id
=
"
second-var-info
"
,
style
=
{
"
margin-left
"
:
"
29px
"
,
"
font-size
"
:
"
12px
"
},
),
],
style
=
{
"
display
"
:
"
flex
"
,
"
flex-direction
"
:
"
row
"
,
"
justify-content
"
:
"
left
"
,
"
align-items
"
:
"
center
"
,
},
),
dcc
.
Graph
(
id
=
"
fig-map
"
,
style
=
{
...
...
@@ -165,6 +197,11 @@ def create_layout(df: pd.DataFrame, config: DotDict) -> list:
"
margin-left
"
:
"
10px
"
,
},
),
html
.
Label
(
"
BB flagging: BB influence if ACN > (145 ppt + 3*ACN_prc)
"
,
id
=
"
flagging-info
"
,
style
=
{
"
margin-left
"
:
"
15px
"
,
"
font-size
"
:
"
12px
"
},
),
]
),
# --- ^^^ --- main content
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment