Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add HEALPix Support #1147

Open
wants to merge 27 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
13e7e64
initial from_healpix
philipc2 Feb 3, 2025
2a06a26
add healpix as a dependency
philipc2 Feb 3, 2025
a7597e8
add healpix io module
philipc2 Feb 3, 2025
bdf1785
continue healpix reader, start user guide
philipc2 Feb 4, 2025
a31d3c1
continue healpix reader, start user guide
philipc2 Feb 4, 2025
0f2d518
Merge branch 'main' into philipc2/healpix-to-ugrid
rajeeja Feb 4, 2025
dbcba22
Merge branch 'main' into philipc2/healpix-to-ugrid
philipc2 Feb 4, 2025
ef98404
update user guide
philipc2 Feb 4, 2025
787c05f
Merge branch 'philipc2/healpix-to-ugrid' of https://github.com/UXARRA…
philipc2 Feb 4, 2025
f2feeca
Merge branch 'main' into philipc2/healpix-to-ugrid
aaronzedwick Feb 4, 2025
c193974
Merge branch 'main' into philipc2/healpix-to-ugrid
philipc2 Feb 5, 2025
15194e3
Merge branch 'main' into philipc2/healpix-to-ugrid
philipc2 Feb 5, 2025
e219dca
Merge branch 'main' into philipc2/healpix-to-ugrid
aaronzedwick Feb 5, 2025
cb14657
add tests
philipc2 Feb 5, 2025
291eae0
Merge branch 'philipc2/healpix-to-ugrid' of https://github.com/UXARRA…
philipc2 Feb 5, 2025
7e4d4a7
Merge branch 'main' into philipc2/healpix-to-ugrid
philipc2 Feb 6, 2025
2070580
update notebook
philipc2 Feb 6, 2025
e4ba729
Merge branch 'philipc2/healpix-to-ugrid' of https://github.com/UXARRA…
philipc2 Feb 6, 2025
e0c09fb
work on userguide, data loading
philipc2 Feb 12, 2025
c273526
Merge branch 'main' into philipc2/healpix-to-ugrid
philipc2 Feb 12, 2025
c5d9a7a
docstrings
philipc2 Feb 12, 2025
008ce1b
add docstrings
philipc2 Feb 12, 2025
01e6f3c
add tests for data
philipc2 Feb 12, 2025
d0ef520
notebook revisions
philipc2 Feb 14, 2025
8fd37b4
notebook revisions
philipc2 Feb 17, 2025
40efbaf
Merge branch 'main' into philipc2/healpix-to-ugrid
philipc2 Feb 18, 2025
89755e1
Merge branch 'main' into philipc2/healpix-to-ugrid
philipc2 Feb 20, 2025
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
1 change: 1 addition & 0 deletions ci/asv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ dependencies:
- holoviews
- matplotlib-base
- matplotlib-inline
- healpix
- netcdf4
- numba
- numpy
Expand Down
1 change: 1 addition & 0 deletions ci/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ dependencies:
- pytest
- pytest-cov
- scipy
- healpix
- xarray
- pip
- ipykernel
Expand Down
1 change: 1 addition & 0 deletions ci/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ dependencies:
- geoviews
- h5netcdf
- hdf5
- healpix
- holoviews
- hvplot
- matplotlib-base
Expand Down
2 changes: 2 additions & 0 deletions docs/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ I/O & Conversion
Grid.from_topology
Grid.from_structured
Grid.from_points
Grid.from_healpix
Grid.to_xarray
Grid.to_geodataframe
Grid.to_polycollection
Expand Down Expand Up @@ -225,6 +226,7 @@ I/O & Conversion

UxDataset.from_structured
UxDataset.from_xarray
UxDataset.from_healpix

Plotting
--------
Expand Down
16 changes: 16 additions & 0 deletions docs/user-guide/grid-formats.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ models have their own grid format (e.g. MPAS, ICON). Below is a list of support
* GEOS CS
* ICON
* FESOM2
* HEALPix

UGRID
=====
Expand Down Expand Up @@ -149,6 +150,21 @@ References
----------
* https://fesom2.readthedocs.io/en/latest/index.html#

HEALPix
=======
The Hierarchical Equal Area isoLatitude Pixelisation (HEALPix) algorithm is a method for the pixelisation of the
2-sphere. It has three defining qualities.
- The sphere is hierarchically tessellated into curvilinear quadrilaterals
- Areas of all pixels at a given resolution are identical
- Pixels are distributed on lines of constant latitude

References
----------
* https://easy.gems.dkrz.de/Processing/healpix/index.html#hierarchical-healpix-output
* https://healpix.sourceforge.io/
* https://healpix.jpl.nasa.gov/
* https://iopscience.iop.org/article/10.1086/427976

Parsed Variables
================

Expand Down
Loading
Loading