Skip to content

Commit 34d1a4a

Browse files
negin513pre-commit-ci[bot]andersy005dcherian
authored
Update indexing material (#192)
* adding indexing basics * adding indexing basic * adding basic and advanced indexing notebooks * renaming these * indexing advanced quick update * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * fix typo * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * moving advanced indexing into intermediate curriculum * updating _toc.yml * updating readme * updating indexing * using myst syntax * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * update this * updating the syntax * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * update * adding notebooks to scipy 2023 * updating stuff * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * updating config * updating README * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * update README * removing the old notebook * removing the redirect * boolean indexing * boolean indexing update * updating to remove the masking stuff * updating basic * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * updates * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * update _config.yml * more updates on toc * fix typo * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * updates for typo * adding syntax myst updates * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * update * fix typo * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * new cache * remove unused imports * update link * update notebook with datetime indexing section * a few updates * removing align/reindex and quick intro update * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * quick update * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Review/updates --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Anderson Banihirwe <13301940+andersy005@users.noreply.github.com> Co-authored-by: Deepak Cherian <dcherian@users.noreply.github.com> Co-authored-by: Anderson Banihirwe <axbanihirwe@ualr.edu> Co-authored-by: dcherian <deepak@cherian.net>
1 parent 2ca47a9 commit 34d1a4a

File tree

13 files changed

+1539
-327
lines changed

13 files changed

+1539
-327
lines changed

.github/workflows/main.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
with:
3131
path: _build
3232
# NOTE: change key to "jupyterbook-DATE" to force rebuilding cache
33-
key: jupyterbook-20230626
33+
key: jupyterbook-20230707
3434

3535
- name: Install Conda environment with Micromamba
3636
uses: mamba-org/setup-micromamba@v1

.github/workflows/preview.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
path: _build
2323
# NOTE: change key to "jupyterbook-DATE" to force rebuilding cache
24-
key: jupyterbook-20230626
24+
key: jupyterbook-20230707
2525

2626
- name: Install Conda environment with Micromamba
2727
uses: mamba-org/setup-micromamba@v1

_config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,6 @@ sphinx:
7979
rediraffe_redirects:
8080
scipy-tutorial/00_overview.ipynb: overview/get-started.md
8181
workshops/scipy2022/README.md: overview/fundamental-path/README.md
82+
fundamentals/02.1_working_with_labeled_data.ipynb: fundamentals/02.1_indexing_Basic.ipynb
8283

8384
bibtex_reference_style: author_year # or label, super, \supercite

_toc.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ parts:
1919
- file: fundamentals/01.1_io
2020
- file: fundamentals/02_labeled_data.md
2121
sections:
22-
- file: fundamentals/02.1_working_with_labeled_data
22+
- file: fundamentals/02.1_indexing_Basic.ipynb
2323
- file: fundamentals/02.2_manipulating_dimensions
2424
- file: fundamentals/03_computation.md
2525
sections:
@@ -37,6 +37,10 @@ parts:
3737
- caption: Intermediate
3838
chapters:
3939
- file: intermediate/01-high-level-computation-patterns
40+
- file: intermediate/indexing/indexing
41+
sections:
42+
- file: intermediate/indexing/advanced-indexing.ipynb
43+
- file: intermediate/indexing/boolean-masking-indexing.ipynb
4044
- file: intermediate/xarray_and_dask
4145
- file: intermediate/xarray_ecosystem
4246
- file: intermediate/hvplot

advanced/backends/backends.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Xarray bundles several backends internally for the following formats:
2222
External Backends that use the new backend API (xarray >= v0.18.0) that allows to add support for backend without any change to Xarray
2323

2424
- [cfgrib](https://github.com/ecmwf/cfgrib) - GRIB
25-
- [tiledb](https://pythonrepo.com/repo/TileDB-Inc-TileDB-xarray) - TileDB
25+
- [tiledb](https://github.com/TileDB-Inc/TileDB-CF-Py) - TileDB
2626
- [rioxarray](https://corteva.github.io/rioxarray/stable/) - GeoTIFF, JPEG-2000, ESRI-hdr, etc (via GDAL)
2727
- [xarray-sentinel](https://github.com/bopen/xarray-sentinel) - Sentinel-1 SAFE
2828
- ...

0 commit comments

Comments
 (0)