Skip to content

Commit

Permalink
Updated with input from latest review
Browse files Browse the repository at this point in the history
  • Loading branch information
eblur authored Sep 7, 2021
1 parent 39ab008 commit cea1f6b
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"### Method 1: Using the `specutils` built-in reader for SDSS spectrum files"
"### Method 1: Using the `specutils` built-in loader for SDSS spectrum files"
]
},
{
Expand All @@ -178,7 +178,7 @@
"id": "5wKmayM7TtHk"
},
"source": [
"Specutils also has a built in reader for SDSS data. If you have downloaded the SDSS spectrum FITS files, you can provide the filename to `Spectrum1D.read` and set the keyword argument `format=\"SDSS-III/IV spec\"`."
"Specutils has [many loaders](https://specutils.readthedocs.io/en/stable/spectrum1d.html#list-of-loaders) for common spectra formats, including one for SDSS spectra. If you have downloaded the SDSS spectrum FITS files, you can provide the filename to `Spectrum1D.read` and set the keyword argument `format=\"SDSS-III/IV spec\"`."
]
},
{
Expand Down Expand Up @@ -250,7 +250,8 @@
},
"outputs": [],
"source": [
"plt.plot(np.power(10.0, qso0008_coadd_data['loglam']), qso0008_coadd_data['flux'])"
"lambda = np.power(10.0, qso0008_coadd_data['loglam'])\n",
"plt.plot(lambda, qso0008_coadd_data['flux'])"
]
},
{
Expand Down Expand Up @@ -352,7 +353,7 @@
"id": "Ws1Bls9aNGo8"
},
"source": [
"**Planned feature:** In a future specutils release, we might be able to plot a single spectrum with the `Spectrum1D.plot_quick` method. [Details are available on Github.](https://github.com/astropy/specutils/pull/650)"
"Adding plotting functionality to specutils is currently under discussion and you can [read the details and contribute to the conversation on Github](https://github.com/astropy/specutils/pull/650)."
]
},
{
Expand Down

0 comments on commit cea1f6b

Please sign in to comment.