Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
c06cbbb
Init xarray (+nc) from python-training
dcamron Apr 19, 2021
6b2067b
Remove external exercises and rename
dcamron Apr 19, 2021
f16624c
Update environment.yml
dcamron Apr 19, 2021
e757e49
Update TOC to include new notebook
dcamron Apr 19, 2021
cac9b82
Wrap-up pre-commit lint steps
dcamron Apr 19, 2021
59c38d0
Mardownify logo embed
dcamron Apr 20, 2021
b169648
Merge branch 'main' into core-xarray
brian-rose Apr 29, 2021
8619fc7
Update environment.yml
brian-rose Apr 29, 2021
1dab418
XArray to Xarray
jukent Jun 14, 2021
ab66288
Use pythia-datasets in pandas notebook
brian-rose Jun 14, 2021
0e5a95e
Merge branch 'main' of https://github.com/ProjectPythia/pythia-founda…
brian-rose Jun 14, 2021
3723be4
Merge branch 'main' of https://github.com/ProjectPythia/pythia-founda…
brian-rose Jun 15, 2021
83f0046
Init xarray (+nc) from python-training
dcamron Apr 19, 2021
51c7c28
Remove external exercises and rename
dcamron Apr 19, 2021
f6891c6
Update environment.yml
dcamron Apr 19, 2021
d1765a1
Update TOC to include new notebook
dcamron Apr 19, 2021
f95b2c0
Wrap-up pre-commit lint steps
dcamron Apr 19, 2021
2c12aea
Mardownify logo embed
dcamron Apr 20, 2021
b5ce528
Update environment.yml
brian-rose Apr 29, 2021
e454c86
XArray to Xarray
jukent Jun 14, 2021
284fc22
Split Xarray notebook, add landing page, begin fitting to template
brian-rose Jun 15, 2021
52c5efe
Merge branch 'main' of https://github.com/ProjectPythia/pythia-founda…
brian-rose Jun 15, 2021
0bec831
Merge branch 'main' into core-xarray
brian-rose Jun 15, 2021
2575147
progress on revising xarray notebook
brian-rose Jun 16, 2021
2690f63
Merge branch 'main' of https://github.com/ProjectPythia/pythia-founda…
brian-rose Jun 16, 2021
7040363
Merge branch 'main' of https://github.com/ProjectPythia/pythia-founda…
brian-rose Jun 16, 2021
5ab9577
Merge branch 'main' into core-xarray
brian-rose Jun 16, 2021
9776fd8
Merge branch 'main' of https://github.com/ProjectPythia/pythia-founda…
brian-rose Jun 16, 2021
b24981a
Merge branch 'main' of https://github.com/ProjectPythia/pythia-founda…
brian-rose Jun 16, 2021
f20a404
Merge branch 'main' into core-xarray
brian-rose Jun 16, 2021
e38ef1b
Finish revising and adapting to template
brian-rose Jun 16, 2021
974aee4
Merge branch 'core-xarray' of https://github.com/dcamron/pythia-found…
brian-rose Jun 16, 2021
c05af7e
Delete extraneous files
brian-rose Jun 16, 2021
c1be33e
Merge branch 'main' into core-xarray
brian-rose Jun 16, 2021
d154026
Fix linting
brian-rose Jun 16, 2021
3428866
Merge branch 'main' of https://github.com/ProjectPythia/pythia-founda…
brian-rose Jun 16, 2021
a15a18a
Merge branch 'main' into core-xarray
brian-rose Jun 16, 2021
3bb5c7b
Fix internal link paths
brian-rose Jun 16, 2021
7b193e8
Fix another link and strip output
brian-rose Jun 16, 2021
57c524a
Merge branch 'main' into core-xarray
brian-rose Jun 16, 2021
5541912
Incorporate reviewer suggestions
brian-rose Jun 16, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions _toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@
sections:
- file: core/data-formats/netcdf-cf
- file: core/xarray
sections:
- file: core/xarray/xarray-intro

- part: Appendix
chapters:
Expand Down
16 changes: 15 additions & 1 deletion core/xarray.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,18 @@
This content is under construction!
```

This section will contain tutorials on using [xarray](http://xarray.pydata.org/en/stable/) for analysis of gridded N-dimensional datasets.
This section contains tutorials on using [Xarray][xarray home]. Xarray is used widely in the geosciences and beyond for analysis of gridded N-dimensional datasets.

---

From the [Xarray website][xarray home]:

> Xarray (formerly Xray) is an open source project and Python package that makes working with labelled multi-dimensional arrays simple, efficient, and fun!
>
> Xarray introduces labels in the form of dimensions, coordinates and attributes on top of raw NumPy-like arrays, which allows for a more intuitive, more concise, and less error-prone developer experience. The package includes a large and growing library of domain-agnostic functions for advanced analytics and visualization with these data structures.
>
> Xarray is inspired by and borrows heavily from pandas, the popular data analysis package focused on labelled tabular data. It is particularly tailored to working with netCDF files, which were the source of xarray’s data model, and integrates tightly with dask for parallel computing.

You should have a basic familiarity with [Numpy arrays](numpy) prior to working through the Xarray notebooks presented here.

[xarray home]: http://xarray.pydata.org/en/stable/
Loading