You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* start replacing `healpy` with `cdshealpix`
* work around a dtype casting bug in cdshealpix
* reorder the cell vertices
(`cdshealpix` starts with a different pixel than `healpy` – otherwise
they're the same)
* depend on `cdshealpix` instead of `healpy`
* add `cdshealpix-python` to intersphinx
* also install `cdshealpix` instead of `healpy` in the upstream-dev ci
* change the backend library in the docstring of `from_dict`
* test with more dtypes
* run CI on windows
* don't install `conda` since we don't need it
* install `cdshealpix` from PyPI
* only enforce colors for `pytest`
* override `FORCE_COLOR` for `setup-micromamba` specifically
* pin `micromamba` instead
* use `assert_allclose` to compare
Copy file name to clipboardExpand all lines: docs/tutorials/healpix.ipynb
+17-7Lines changed: 17 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -152,19 +152,29 @@
152
152
"derived_ds"
153
153
]
154
154
},
155
+
{
156
+
"cell_type": "markdown",
157
+
"id": "11",
158
+
"metadata": {},
159
+
"source": [
160
+
"```{note}\n",
161
+
"We need to use {py:func}`xarray.testing.assert_allclose` to compare cell centers because the cell center coordinates were computed using a [different library](https://github.com/healpy/healpy) with a slightly different implementation, resulting in small floating point differences.\n",
0 commit comments