Open
Description
What should we add?
Requestor:
Description:
Could we add total # observations per year submitted by IOOS RAs to NDBC (at a glance I see the quarterly totals add to ~half a million per year, but recommend adding that yearly total to this page more explicitly: https://ioos.github.io/ioos_metrics/gts_regional.html)?
Seems like a simple task.
Questions:
- Do we want total for all RAs? Or split into a table for totals per RA per Year?
Reference
- Script to generate the webpage: https://github.com/ioos/ioos_metrics/blob/main/website/create_gts_regional_landing_page.py
- Template webpage which is populated from script above: https://github.com/ioos/ioos_metrics/blob/main/website/templates/gts_regional_landing_page.html
- Source data: https://erddap.ioos.us/erddap/tabledap/gts_regional_statistics.html
We can easily pd.groupby(['Region','Year']).to_html()
to build that table.
Similar to how we build the tables in the upper portion of the webpage.
ioos_metrics/website/create_gts_regional_landing_page.py
Lines 197 to 199 in 9974db4