Skip to content

Commit c6a156b

Browse files
authored
Merge pull request #34 from Dewberry/release/0.5.0
Release/0.5.0
2 parents fa5becd + 412c371 commit c6a156b

File tree

14 files changed

+1429
-107
lines changed

14 files changed

+1429
-107
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,8 @@ cython_debug/
169169

170170
# PyPI configuration file
171171
.pypirc
172-
catalogs
172+
catalogs/*
173+
!catalogs/example-input-data/
173174
holding
174175
.DS_Store
175176

catalogs/example-input-data/.gitkeep

Whitespace-only changes.

configs/params-config.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"watershed": {
3+
"id": "allegheny",
4+
"geometry_file": "/workspaces/stormhub/data/0_source/huc04/allegheny_huc.geojson",
5+
"description": "Watershed for use in development of storm catalog"
6+
},
7+
"transposition_region": {
8+
"id": "allegheny-transpo-area-v01",
9+
"geometry_file": "/workspaces/stormhub/data/0_source/transposition/allegheny_slamsim2_transpo.geojson",
10+
"description": "Transposition Domain developed by the ARC team"
11+
},
12+
"params": {
13+
"start_date": "1979-02-01",
14+
"end_date": "1979-02-28",
15+
"top_n_events": 10,
16+
"check_every_n_hours": 24,
17+
"num_workers": 12,
18+
"storm_duration_hours": 72,
19+
"min_precip_threshold_inches": 1.0,
20+
"output_resolution_km": 1
21+
}
22+
}

env.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@ dependencies:
2121
- zarr=3.1.3
2222
- pip:
2323
- pystac==1.14.1
24+
- dataretrieval==1.1.2
25+
- duckdb==1.4.4
26+
- nbconvert==7.17.0
2427
- boto3==1.40.54
28+
- leafmap==0.60.1
2529
- s3fs==0.4.2
2630
- hecdss==0.1.28
2731
- python-dotenv==1.1.1

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ dependencies = [
3535
"dask==2025.1.0",
3636
"numcodecs==0.13.1",
3737
"scipy==1.15.2",
38-
"dataretrieval==1.0.11"
38+
"dataretrieval==1.0.11",
39+
"stac-geoparquet==0.7.0",
40+
"hecdss==0.1.29"
3941

4042
]
4143

0 commit comments

Comments
 (0)