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
The challenge Immersed in the Sounds of Space is proposing creating sonifications of 3D NASA space datasets - where 3rd dimension can be spectral (say).
One obvious candidate here is solar imagery - e.g. NASA's Solar Dynamics Observatory (SDO) creates images of the sun and the solar corona (the sun's atmosphere) in various different wavelengths (which correspond to different temperatures -> heights in the corona).
This notebook will:
show how to download some SDO data
show how to visualise this in sunpy
The text was updated successfully, but these errors were encountered:
Checked it solves and round-trips from lockfile as follows:
```console
$ # solve the env
$ conda env create --file requirements/environment_immersed_sounds_space.yml
<snip>
# To activate this environment, use
#
# $ conda activate spaceapps-mo-immersed-sounds-space
#
# To deactivate an active environment, use
#
# $ conda deactivate
$ # generate a lockfile so can get a fully-reproducible environment
$ lockfile=requirements/environment_immersed_sounds_space.lock
$ conda list --explicit --md5 --name spaceapps-mo-immersed-sounds-space > $lockfile
$ # edit (tweak artifactory bumf) for external reusability
$ sed -i 's|https://metoffice.*/conda-forge|https://conda.anaconda.org/conda-forge|' $lockfile
$ # check it round-trips OK
$ conda env remove --name spaceapps-mo-immersed-sounds-space
<snip>
$ conda create --name spaceapps-mo-immersed-sounds-space --file $lockfile
<snip>
```
GH-2
The challenge Immersed in the Sounds of Space is proposing creating sonifications of 3D NASA space datasets - where 3rd dimension can be spectral (say).
One obvious candidate here is solar imagery - e.g. NASA's Solar Dynamics Observatory (SDO) creates images of the sun and the solar corona (the sun's atmosphere) in various different wavelengths (which correspond to different temperatures -> heights in the corona).
This notebook will:
The text was updated successfully, but these errors were encountered: