Skip to content

Commit

Permalink
Merge pull request #297 from icesat2py/development
Browse files Browse the repository at this point in the history
v0.6.2 release
  • Loading branch information
JessicaS11 committed Mar 18, 2022
2 parents 59c8e6e + 17ef091 commit 9d87674
Show file tree
Hide file tree
Showing 23 changed files with 4,126 additions and 2,818 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/get_pypi_stats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,14 @@ jobs:
# Calculates pypi stats and clones and stores in CSV file
- name: Update pypi stats files
run: |
pip install -r requirements.txt
pip install -r requirements.txt pypistats
python ./doc/source/tracking/pypistats/get_pypi_stats.py
# Commits files to repository
- name: Commit changes
uses: EndBug/add-and-commit@v7
uses: EndBug/add-and-commit@v8
with:
author_name: learn2phoenix
message: "Pypi stats auto-update"
add: "./doc/source/tracking/pypistats/*"
# add: "./pypistats/*"
branch: "traffic" # commits to branch "traffic"
# add: "./pypistats/*"
3 changes: 1 addition & 2 deletions .github/workflows/traffic_action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,9 @@ jobs:
# Commits files to repository
- name: Commit changes
uses: EndBug/add-and-commit@v7
uses: EndBug/add-and-commit@v8
with:
author_name: Jessica Scheick
message: "GitHub traffic auto-update"
add: "./doc/source/tracking/traffic/*"
# add: "./traffic/*"
branch: "traffic" # commits to branch "traffic"
5 changes: 3 additions & 2 deletions .github/workflows/uml_action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ jobs:
steps:
- name: Check out repository
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: set up environment
run: |
pip install -r requirements.txt
Expand All @@ -23,9 +25,8 @@ jobs:
rm ./packages_dev_uml.svg
mv ./*.svg ./doc/source/user_guide/documentation/
- name: Commit changes
uses: EndBug/add-and-commit@v7
uses: EndBug/add-and-commit@v8
with:
author_name: GitHub Action
message: "GitHub action UML generation auto-update"
add: "./doc/source/user_guide/documentation/*"
ref: git branch --show-current
2 changes: 1 addition & 1 deletion doc/source/example_notebooks/IS2_data_read-in.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@
"\n",
"***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",
"\n",
"This can happen if you unintentionally provide the same granule multiple times with different filenames."
"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."
]
},
{
Expand Down

0 comments on commit 9d87674

Please sign in to comment.