ahuang11 commited on
Commit
22ae45a
1 Parent(s): f1debc7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -43,6 +43,7 @@ This app allows you to compare a single year of data from a weather station to t
43
  1. Select a network station from the dropdowns; alternatively you can click on the map to select the nearest station.
44
  2. Choose the desired variable and year to plot, and change the average range if desired.
45
  3. Hover over the plot to see the value for each day; use the mouse wheel to zoom in/out.
 
46
  """
47
 
48
  FOOTER_MESSAGE = """
@@ -197,6 +198,7 @@ class ClimateApp(pn.viewable.Viewer):
197
  main_layout=None,
198
  title="Year vs Climatology",
199
  accent="grey",
 
200
  )
201
  pn.state.onload(self._onload)
202
 
 
43
  1. Select a network station from the dropdowns; alternatively you can click on the map to select the nearest station.
44
  2. Choose the desired variable and year to plot, and change the average range if desired.
45
  3. Hover over the plot to see the value for each day; use the mouse wheel to zoom in/out.
46
+ 4. Tap on the top plot to see the value for a specific day, compared to all other years in the average range.
47
  """
48
 
49
  FOOTER_MESSAGE = """
 
198
  main_layout=None,
199
  title="Year vs Climatology",
200
  accent="grey",
201
+ header_background="#1b1e23",
202
  )
203
  pn.state.onload(self._onload)
204