Skip to content

Commit 6850ad6

Browse files
committed
Use absolute URLs for images to make README portable
1 parent 4e4603a commit 6850ad6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/astro-informatics/s2fft/blob/main/notebooks/spherical_harmonic_transform.ipynb)
1010
[![Linter](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
1111

12-
<img align="left" height="85" width="98" src="./docs/assets/sax_logo.png">
12+
<img align="left" height="85" width="98" alt="s2fft logo - schematic representation of a tiled sphere" src="https://raw.githubusercontent.com/astro-informatics/s2fft/main//docs/assets/sax_logo.png">
1313

1414
# Differentiable and accelerated spherical transforms
1515

@@ -47,7 +47,7 @@ algorithms are based on new Wigner-d recursions that are stable to high
4747
angular resolution $L$. The diagram below illustrates the recursions
4848
(for further details see [Price & McEwen 2024]((https://arxiv.org/abs/2311.14670))).
4949

50-
![image](./docs/assets/figures/Wigner_recursion_legend_darkmode.png)
50+
![Schematic of Wigner recursions](https://raw.githubusercontent.com/astro-informatics/s2fft/main/docs/assets/figures/Wigner_recursion_legend_darkmode.png)
5151
With this recursion to hand, the spherical harmonic coefficients of an
5252
isolatitudinally sampled map may be computed as a two step process. First,
5353
a 1D Fourier transform over longitude, for each latitudinal ring. Second,
@@ -60,7 +60,7 @@ negligible memory overhead at the cost of slightly slower execution. The
6060
diagram below illustrates the separable spherical harmonic transform
6161
(for further details see [Price & McEwen 2024]((https://arxiv.org/abs/2311.14670))).
6262

63-
![image](./docs/assets/figures/sax_schematic_legend_darkmode.png)
63+
![Schematic of forward and inverse spherical harmonic transforms](https://raw.githubusercontent.com/astro-informatics/s2fft/main/docs/assets/figures/sax_schematic_legend_darkmode.png)
6464

6565
## Sampling :earth_africa:
6666

@@ -85,7 +85,7 @@ so the corresponding harmonic transforms do not achieve machine
8585
precision but exhibit some error. However, the HEALPix sampling provides
8686
pixels of equal areas, which has many practical advantages.
8787

88-
<p align="center"><img src="./docs/assets/figures/spherical_sampling.png" width="700"></p>
88+
<p align="center"><img alt="Visualization of spherical sampling schemes" src="https://raw.githubusercontent.com/astro-informatics/s2fft/main/docs/assets/figures/spherical_sampling.png" width="700"></p>
8989

9090
> [!NOTE]
9191
> For algorithmic reasons JIT compilation of HEALPix transforms can become slow at high bandlimits, due to XLA unfolding of loops which currently cannot be avoided. After compiling HEALPix transforms should execute with the efficiency outlined in the associated paper, therefore this additional time overhead need only be incurred once. We are aware of this issue and are working to fix it. A fix for CPU execution has now been implemented (see example [notebook](https://astro-informatics.github.io/s2fft/tutorials/spherical_harmonic/JAX_HEALPix_backend.html)). Fix for GPU execution is coming soon.

0 commit comments

Comments
 (0)