Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add collection & processing of Roberts Creek discharge #142

Merged
merged 1 commit into from
Dec 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions config/nowcast.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ rivers:
Fraser: 08MF005
HomathkoMouth: 08GD004
NicomeklLangley: 08MH155
RobertsCreek: 08GA047
SalmonSayward: 08HD006
SanJuanPortRenfrew: 08HA010
SquamishBrackendale: 08GA022
Expand All @@ -116,6 +117,7 @@ rivers:
Fraser: /data/dlatorne/SOG-projects/SOG-forcing/ECget/Fraser_flow
HomathkoMouth: /results/forcing/rivers/observations/Homathko_Mouth_flow
NicomeklLangley: /results/forcing/rivers/observations/Nicomekl_Langley_flow
RobertsCreek: /results/forcing/rivers/observations/RobertsCreek_flow
SalmonSayward: /results/forcing/rivers/observations/Salmon_Sayward_flow
SanJuanPortRenfrew: /results/forcing/rivers/observations/SanJuan_PortRenfrew_flow
SquamishBrackendale: /results/forcing/rivers/observations/Squamish_Brackendale_flow
Expand Down
2 changes: 2 additions & 0 deletions sarracenia/hydrometric.conf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ accept .*08MF005.*
accept .*08GD004.*
# Nicomekl River at Langley
accept .*08MH155.*
# Robers Creek at Roberts Creek
accept .*08GA047.*
# Salmon River near Sayward
accept .*08HD006.*
# San Juan River at Port Renfrew
Expand Down
2 changes: 2 additions & 0 deletions tests/workers/test_collect_river_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ def test_rivers_sections(self, prod_config):
"Fraser": "08MF005",
"HomathkoMouth": "08GD004",
"NicomeklLangley": "08MH155",
"RobertsCreek": "08GA047",
"SalmonSayward": "08HD006",
"SanJuanPortRenfrew": "08HA010",
"SquamishBrackendale": "08GA022",
Expand All @@ -134,6 +135,7 @@ def test_rivers_sections(self, prod_config):
"Fraser": "/data/dlatorne/SOG-projects/SOG-forcing/ECget/Fraser_flow",
"HomathkoMouth": "/results/forcing/rivers/observations/Homathko_Mouth_flow",
"NicomeklLangley": "/results/forcing/rivers/observations/Nicomekl_Langley_flow",
"RobertsCreek": "/results/forcing/rivers/observations/RobertsCreek_flow",
"SalmonSayward": "/results/forcing/rivers/observations/Salmon_Sayward_flow",
"SanJuanPortRenfrew": "/results/forcing/rivers/observations/SanJuan_PortRenfrew_flow",
"SquamishBrackendale": "/results/forcing/rivers/observations/Squamish_Brackendale_flow",
Expand Down