Skip to content

Commit f8d2760

Browse files
authored
Merge pull request #10 from ProjectPythia/update-citations
Update citations
2 parents baca09b + a882cf0 commit f8d2760

File tree

4 files changed

+73
-7
lines changed

4 files changed

+73
-7
lines changed

.github/workflows/nightly-build.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ jobs:
1111
uses: ProjectPythia/cookbook-actions/.github/workflows/build-book.yaml@main
1212
with:
1313
# Per-cell kernel execution timeout in seconds (-1 = unlimited, adjust as needed)
14-
build_command: 'NBCLIENT_EXECUTION_TIMEOUT=600 myst build --execute --html --strict'
14+
build_command: 'NBCLIENT_EXECUTION_TIMEOUT=600 myst build --execute --html'
15+
secrets:
16+
EARTHDATA_USERNAME: ${{ secrets.EARTHDATA_USERNAME }}
17+
EARTHDATA_PASSWORD: ${{ secrets.EARTHDATA_PASSWORD }}
1518

1619
deploy:
1720
needs: build

CITATION.cff

Lines changed: 66 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,72 @@ authors:
2020
orcid: https://orcid.org/0000-0003-0429-6905
2121
website: https://escience.washington.edu/member/anthony-arendt/
2222
affiliation: University of Washington eScience Institute
23-
- name: "Snow Observations Cookbook Contributors" # use the 'name' field to acknowledge organizations
24-
website: "https://github.com/ProjectPythia/cookbook-template/graphs/contributors"
25-
title: "SnowEx Cookbook"
23+
- family-names: Ackroyd
24+
given-names: Chelsea
25+
orcid: https://orcid.org/0009-0001-5317-2784
26+
affiliation: University of Utah
27+
- family-names: Adebisi
28+
given-names: Naheem
29+
affiliation: ESRI
30+
- family-names: Bonnell
31+
given-names: Randall
32+
affiliation: USGS
33+
- family-names: Dennison
34+
given-names: Philip
35+
orcid: https://orcid.org/0000-0002-0241-1917
36+
affiliation: University of Utah
37+
- family-names: Durand
38+
given-names: Michael
39+
orcid: https://orcid.org/0000-0003-2682-6196
40+
affiliation: The Ohio State University
41+
- family-names: Henderson
42+
given-names: Scott
43+
orcid: https://orcid.org/0000-0003-0624-4965
44+
affiliation: University of Washington
45+
- family-names: Johnson
46+
given-names: Micah
47+
website: https://github.com/micahjohnson150
48+
- family-names: Keskinen
49+
given-names: Zach
50+
affiliation: Boise State University
51+
- family-names: Marshall
52+
given-names: Hans-Peter
53+
orcid: https://orcid.org/0000-0002-4852-5637
54+
affiliation: Boise State University
55+
- family-names: Mason
56+
given-names: Megan
57+
affiliation: NASA Goddard Space Flight Center
58+
- family-names: Palomaki
59+
given-names: Ross
60+
affiliation: Montana State University
61+
- family-names: Raleigh
62+
given-names: Mark
63+
orcid: https://orcid.org/0000-0002-1303-3472
64+
affiliation: Oregon State University
65+
- family-names: Roth
66+
given-names: Keely
67+
affiliation: University of Utah
68+
- family-names: Sandusky
69+
given-names: Micah
70+
- family-names: Skiles
71+
given-names: McKenzie
72+
orcid: https://orcid.org/0000-0002-7726-6355
73+
affiliation: University of Utah
74+
- family-names: Stuefer
75+
given-names: Svetlana
76+
orcid: https://orcid.org/0000-0003-0740-8335
77+
affiliation: University of Alaska Fairbanks
78+
- family-names: Tarricone
79+
given-names: Jack
80+
orcid: https://orcid.org/0000-0001-9499-3354
81+
affiliation: University of Nevada, Reno
82+
- family-names: Vuyovich
83+
given-names: Carrie
84+
orcid: https://orcid.org/0009-0001-5671-0568
85+
affiliation: NASA Goddard Space Flight Center
86+
- name: "Snow Observations Cookbook Contributors"
87+
website: "https://github.com/ProjectPythia/snow-observations-cookbook/graphs/contributors"
88+
title: "Snow Observations Cookbook"
2689
abstract: "Tutorials for working with NASA SnowEx mission datasets."
2790

2891

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ datasets, algorithms and software.
3030

3131
### Contributors
3232

33-
<a href="https://github.com/SnowEx/snow-cookbook/graphs/contributors">
33+
<a href="https://github.com/SnowEx/snow-observations-cookbook/graphs/contributors">
3434
<img src="https://contrib.rocks/image?repo=SnowEx/snow-observations-cookbook" />
3535
</a>
3636

@@ -84,7 +84,7 @@ If you are interested in running this material locally on your computer,
8484
you will need to follow this workflow:
8585

8686

87-
1. Clone the `https://github.com/ProjectPythia/snow-cookbook` repository:
87+
1. Clone the `https://github.com/ProjectPythia/snow-observations-cookbook` repository:
8888

8989
```bash
9090
git clone https://github.com/ProjectPythia/snow-observations-cookbook.git

notebooks/uavsar-tutorial.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1137,7 +1137,7 @@
11371137
"# Use rioxarray to sample values directly from the in-memory array\n",
11381138
"from rasterio.transform import rowcol\n",
11391139
"df_both['uavsar_sd'] = [\n",
1140-
" float(sd_change.sel(x=x, y=y, method='nearest').values) \n",
1140+
" sd_change.sel(x=x, y=y, method='nearest').values.item() \n",
11411141
" for x, y in coord_list\n",
11421142
"]\n",
11431143
"\n",

0 commit comments

Comments
 (0)