Skip to content

Commit

Permalink
Adds MRF and SRF reservoir data feeds
Browse files Browse the repository at this point in the history
  • Loading branch information
shawncrawley committed Mar 15, 2024
1 parent c1ae5b1 commit 5b65bbd
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
product: mrf_reservoirs
configuration: medium_range_mem1
product_type: "vector" # Needed to not fail, but obviously there's nothing more than an ingest going on here
run: true

ingest_files:
- file_format: common/data/model/com/nwm/{{variable:NWM_DATAFLOW_VERSION}}/nwm.{{datetime:%Y%m%d}}/medium_range_mem1/nwm.t{{datetime:%H}}z.medium_range.reservoir_1.f{{range:1,241,1,%03d}}.conus.nc
file_step: None
file_window: None
target_table: ingest.nwm_reservoir_mrf
target_cols: ['feature_id', 'water_sfc_elev', 'outflow']
target_keys: (feature_id)
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
product: srf_reservoirs
configuration: short_range
product_type: "vector" # Needed to not fail, but obviously there's nothing more than an ingest going on here
run: true

ingest_files:
- file_format: common/data/model/com/nwm/{{variable:NWM_DATAFLOW_VERSION}}/nwm.{{datetime:%Y%m%d}}/short_range/nwm.t{{datetime:%H}}z.short_range.reservoir.f{{range:1,19,1,%03d}}.conus.nc
file_step: None
file_window: None
target_table: ingest.nwm_reservoir_srf
target_cols: ['feature_id', 'water_sfc_elev', 'outflow']
target_keys: (feature_id)

0 comments on commit 5b65bbd

Please sign in to comment.