Skip to content

Commit 9d87674

Browse files
authored
Merge pull request #297 from icesat2py/development
v0.6.2 release
2 parents 59c8e6e + 17ef091 commit 9d87674

File tree

23 files changed

+4126
-2818
lines changed

23 files changed

+4126
-2818
lines changed

.github/workflows/get_pypi_stats.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,14 @@ jobs:
2323
# Calculates pypi stats and clones and stores in CSV file
2424
- name: Update pypi stats files
2525
run: |
26-
pip install -r requirements.txt
26+
pip install -r requirements.txt pypistats
2727
python ./doc/source/tracking/pypistats/get_pypi_stats.py
2828
2929
# Commits files to repository
3030
- name: Commit changes
31-
uses: EndBug/add-and-commit@v7
31+
uses: EndBug/add-and-commit@v8
3232
with:
3333
author_name: learn2phoenix
3434
message: "Pypi stats auto-update"
3535
add: "./doc/source/tracking/pypistats/*"
36-
# add: "./pypistats/*"
37-
branch: "traffic" # commits to branch "traffic"
36+
# add: "./pypistats/*"

.github/workflows/traffic_action.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,9 @@ jobs:
3535
3636
# Commits files to repository
3737
- name: Commit changes
38-
uses: EndBug/add-and-commit@v7
38+
uses: EndBug/add-and-commit@v8
3939
with:
4040
author_name: Jessica Scheick
4141
message: "GitHub traffic auto-update"
4242
add: "./doc/source/tracking/traffic/*"
4343
# add: "./traffic/*"
44-
branch: "traffic" # commits to branch "traffic"

.github/workflows/uml_action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ jobs:
1111
steps:
1212
- name: Check out repository
1313
uses: actions/checkout@v2
14+
with:
15+
ref: ${{ github.event.pull_request.head.ref }}
1416
- name: set up environment
1517
run: |
1618
pip install -r requirements.txt
@@ -23,9 +25,8 @@ jobs:
2325
rm ./packages_dev_uml.svg
2426
mv ./*.svg ./doc/source/user_guide/documentation/
2527
- name: Commit changes
26-
uses: EndBug/add-and-commit@v7
28+
uses: EndBug/add-and-commit@v8
2729
with:
2830
author_name: GitHub Action
2931
message: "GitHub action UML generation auto-update"
3032
add: "./doc/source/user_guide/documentation/*"
31-
ref: git branch --show-current

doc/source/example_notebooks/IS2_data_read-in.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@
426426
"\n",
427427
"***ATTENTION: icepyx loads your data by creating an Xarray DataSet for each input granule and then merging them. In some cases, the automatic merge fails and needs to be handled manually. In these cases, icepyx will return a warning with the error message from the failed Xarray merge and a list of per-granule DataSets***\n",
428428
"\n",
429-
"This can happen if you unintentionally provide the same granule multiple times with different filenames."
429+
"This can happen if you unintentionally provide the same granule multiple times with different filenames or in segmented products where the rgt+cycle automatically generated `gran_idx` values match. In this latter case, you can simply provide unique `gran_idx` values for each DataSet in `ds` and run `import xarray as xr` and `ds_merged = xr.merge(ds)` to create one merged DataSet."
430430
]
431431
},
432432
{

0 commit comments

Comments
 (0)