Update README.md
Browse files
README.md
CHANGED
@@ -77,6 +77,9 @@ Compressed simulation model outputs containing spherical harmonics are available
|
|
77 |
|
78 |
```python
|
79 |
from astropy.io import fits
|
|
|
|
|
|
|
80 |
fits_file = fits.open("wsa_201005010800R000_ahmi.fits")
|
81 |
sph_data = fits_file[3].data.copy()
|
82 |
fits_file.close()
|
|
|
77 |
|
78 |
```python
|
79 |
from astropy.io import fits
|
80 |
+
import numpy as np
|
81 |
+
import torch
|
82 |
+
|
83 |
fits_file = fits.open("wsa_201005010800R000_ahmi.fits")
|
84 |
sph_data = fits_file[3].data.copy()
|
85 |
fits_file.close()
|