Skip to content

Commit caa453d

Browse files
committed
update intake ymls
1 parent b923324 commit caa453d

4 files changed

+15
-36
lines changed
+8-20
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,37 @@
11
sources:
22

3-
nwis-streamflow-usgs-gages-osn:
3+
nwis-streamflow-usgs-gages-osn:
44
driver: zarr
5-
description: "subset of NWIS streamflow - OSN pod storage, 275 MB, 40 years of daily data, CONUS extent point data, 1 real variable (streamflow)"
5+
description: "Streamflow from NWIS, extracted and rechunked into time series (NWM2.1 time period)"
66
args:
7-
urlpath: 's3://rsignellbucket2/hytest/nwm/nwis_chanobs.zarr'
7+
urlpath: 's3://hytest/tutorials/evaluation/nwm/nwis_chanobs.zarr'
88
consolidated: true
99
storage_options:
1010
anon: true
1111
requester_pays: false
1212
client_kwargs:
13-
endpoint_url: https://renc.osn.xsede.org
14-
15-
red-river-subset-osn:
16-
driver: zarr
17-
description: "Sample subset - OSN pod storage, 470M, Very High-Resolution Dynamic Downscaling of Regional Climate for Use in Long-term Hydrologic Planning along the Red River Valley System"
18-
args:
19-
urlpath: 's3://rsignellbucket2/nhgf/sample_data/red_river_2020.zarr'
20-
consolidated: true
21-
storage_options:
22-
anon: true
23-
requester_pays: false
24-
client_kwargs:
25-
endpoint_url: https://renc.osn.xsede.org
13+
endpoint_url: https://usgs.osn.mghpcc.org
2614

2715
alaska-et-2020-subset-osn:
2816
driver: zarr
2917
description: "Sample subset - OSN pod storage, 863M, Gridded 20km Daily Reference Evapotranspiration for the State of Alaska from 1979 to 2017/CCSM4 historical simulation"
3018
args:
31-
urlpath: 's3://rsignellbucket2/nhgf/sample_data/ccsm4.zarr'
19+
urlpath: 's3://mdmf/gdp/alaska_et_2020_ccsm4_historical_simulation.zarr'
3220
consolidated: true
3321
storage_options:
3422
anon: true
3523
requester_pays: false
3624
client_kwargs:
37-
endpoint_url: https://renc.osn.xsede.org
25+
endpoint_url: https://usgs.osn.mghpcc.org
3826

3927
prism-v2-osn:
4028
driver: zarr
4129
description: "USGS THREDDS Holdings/Parameter-elevation Regressions on Independent Slopes Model Monthly Climate Data for the Continental United States"
4230
args:
43-
urlpath: 's3://rsignellbucket2/nhgf/sample_data/prism_v2.zarr'
31+
urlpath: 's3://mdmf/gdp/PRISM_v2.zarr'
4432
consolidated: true
4533
storage_options:
4634
anon: true
4735
requester_pays: false
4836
client_kwargs:
49-
endpoint_url: https://renc.osn.xsede.org
37+
endpoint_url: https://usgs.osn.mghpcc.org

test_catalogs/intake_zarr_catalog_s3.yaml

+3-12
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,16 @@ sources:
44
driver: zarr
55
description: "Sample subset - s3 storage, 863M, Gridded 20km Daily Reference Evapotranspiration for the State of Alaska from 1979 to 2017/CCSM4 historical simulation"
66
args:
7-
urlpath: 's3://nhgf-development/workspace/testing/sample-zarr/ccsm4.zarr'
7+
urlpath: 's3://nhgf-development/workspace/DataConversion/alaska_et_2020_ccsm4_historical_simulation.zarr'
88
consolidated: true
99
storage_options:
1010
requester_pays: true
1111

12-
red-river-subset-s3:
13-
driver: zarr
14-
description: "Sample subset - s3 storage, 470M, Very High-Resolution Dynamic Downscaling of Regional Climate for Use in Long-term Hydrologic Planning along the Red River Valley System"
15-
args:
16-
urlpath: 's3://nhgf-development/workspace/testing/sample-zarr/red_river_2020.zarr'
17-
consolidated: true
18-
storage_options:
19-
requester_pays: true
20-
21-
conus404-hourly-s3:
12+
conus404-daily-s3:
2213
driver: zarr
2314
description: "CONUS404 - s3 storage, 70 TB, 40 years of hourly data, CONUS extent with 4 km gridded spatial resolution, 157 variables"
2415
args:
25-
urlpath: 's3://nhgf-development/conus404/conus404_hourly_202209.zarr'
16+
urlpath: 's3://nhgf-development/conus404/conus404_daily_202210.zarr'
2617
consolidated: true
2718
storage_options:
2819
requester_pays: true

tests/test_3_read_from_intake.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def aws_credentials() -> bool:
3838
"""Whether we have active AWS credentials or not.
3939
4040
If we do, return True. If not, return False.
41-
If False, tests will only be ran on OSN data.
41+
If False, tests will only be run on OSN data.
4242
"""
4343
try:
4444
boto3.client('s3')
@@ -72,7 +72,7 @@ def test_read_from_intake(
7272
# check for AWS credentials
7373
if not aws_credentials:
7474
raise ValueError(
75-
'No AWS credentials found! This test cannot be ran.',
75+
'No AWS credentials found! This test cannot be run.',
7676
)
7777

7878
# shorten name for convenience

tests/test_4_read_from_stac.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def aws_credentials() -> bool:
3737
"""Whether we have active AWS credentials or not.
3838
3939
If we do, return True. If not, return False.
40-
If False, tests will only be ran on OSN data.
40+
If False, tests will only be run on OSN data.
4141
"""
4242
try:
4343
boto3.client('s3')
@@ -76,7 +76,7 @@ def test_read_from_stac(
7676
# check for AWS credentials
7777
if not aws_credentials:
7878
raise ValueError(
79-
'No AWS credentials found! This test cannot be ran.',
79+
'No AWS credentials found! This test cannot be run.',
8080
)
8181

8282
# get implementation

0 commit comments

Comments
 (0)