Skip to content

Commit 7ed5e47

Browse files
committed
funding info
1 parent 6ce7df2 commit 7ed5e47

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

content/tutorials/parallelization/SIMWE_parallelization.qmd

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ nlcd_filename, headers = urllib.request.urlretrieve(url)
124124
with zipfile.ZipFile(nlcd_filename, "r") as zip_ref:
125125
zip_ref.extractall()
126126
os.remove(nlcd_filename)
127-
nlcd_filename = Path(url).stem + ".tif"
127+
nlcd_filename = Path(url).with_suffix(".tif").name
128128
```
129129

130130
Create a GRASS project using the coordinate reference system (CRS) of the NLCD dataset.
@@ -156,7 +156,7 @@ hydro_filename, headers = urllib.request.urlretrieve(url)
156156
with zipfile.ZipFile(hydro_filename, "r") as zip_ref:
157157
zip_ref.extractall()
158158
os.remove(hydro_filename)
159-
hydro_filename = Path(url).stem + ".gpkg"
159+
hydro_filename = Path(url).with_suffix(".gpkg").name
160160
```
161161
We will create another project, called "hydro", to do the initial processing
162162
of the hydrography data in the original CRS of the data
@@ -811,3 +811,8 @@ m
811811

812812
We can now identify subwatersheds that have larger erosion values and are potentially
813813
the source of increased sediment loads downstream, contributing to water quality degradation and habitat disruption.
814+
815+
816+
## Acknowledgements
817+
818+
The development of this tutorial was supported bym NSF Award #2322073, granted to Natrx, Inc. and USDA NRCS award NR233A750023C043.

0 commit comments

Comments
 (0)