Skip to content

Commit

Permalink
addressing review comments, fixing typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Julie Imig committed Jan 10, 2025
1 parent 31eeac9 commit 0ab68ea
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions notebooks/SDSS/APOGEE_TESS_tutorial/APOGEE_TESS_tutorial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
"\n",
"Let's narrow down the search to one particular star: cepheid variable \"V1154-Cyg\". Cepheid Variables are pulsating stars, which physically grow larger and smaller, and as a result brighter and dimmer, on a regular rhythm of few days. Cepheid variables in particular are useful to study in astronomy because their pulsation period correlates with their intrinsic brightness, making it easy to determine how far away the star is! Later in this notebook, we will look at some other kinds of variable stars.\n",
"\n",
"We can search for this star in particular using the `obs_id` keyword:"
"We can search for this star in particular using the `target_name` keyword:"
]
},
{
Expand Down Expand Up @@ -215,7 +215,7 @@
"<a id=\"APOGEE-download\"></a>\n",
"## Downloading APOGEE data products\n",
"\n",
"List all of the data products availble for this star using `Observations.get_product_list()`.\n",
"List all of the data products available for this star using `Observations.get_product_list()`.\n",
"\n",
"There are 8 total files available for this star, which include the individual spectra from each visit (APVISIT; `apVisit-dr17-*-V1154_Cyg.fits`), the combined spectrum (APSTAR; `apStar-dr17-V1154_Cyg.fits`), the processed and anaylzed spectrum (ASPCAPSTAR; `aspcapStar-dr17-V1154_Cyg.fits`) which contains the best-fit model and stellar parameters from the [APOGEE Stellar Parameters and Chemical Abundance Pipeline (ASPCAP)](https://www.sdss4.org/dr17/irspec/aspcap/). Only the apStar and aspcapStar files are tagged as \"Minimum Recommended Products'\n",
"\n",
Expand Down Expand Up @@ -347,7 +347,9 @@
"## Downloading the APOGEE allStar Catalog\n",
"We can also download the APOGEE allStar catalog, which contains a lot of useful information for the full APOGEE sample, including stellar parameters, chemical abundances, positions, and observation data for all of the stars in APOGEE.\n",
"\n",
"We can do this with the `download_file` function in astroquery, knowing the MAST data URL for the allStar catalog is `mast:SDSS/apogee/allStar-dr17-synspec_rev1.fits`."
"We can do this with the `download_file` function in astroquery, knowing the MAST data URL for the allStar catalog is `mast:SDSS/apogee/allStar-dr17-synspec_rev1.fits`.\n",
"\n",
"This is a fairly large file (3.9 GB), so this download may take a few minutes!"
]
},
{
Expand Down Expand Up @@ -470,7 +472,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"There are a handfull of results, but we can find the closest match to this star using the \"distance\" column which returns the distance (in arcsecs) of each match to our cone search."
"There are a handful of results, but we can find the closest match to this star using the \"distance\" column which returns the distance (in arcsecs) of each match to our cone search. There are several results with distance of 0, (this star was observed in multiple TESS sectors), so we will just use the first result."
]
},
{
Expand Down

0 comments on commit 0ab68ea

Please sign in to comment.