Skip to content

Commit 3f2d2c2

Browse files
committed
MAINT: adding rendering
1 parent ca26642 commit 3f2d2c2

File tree

3 files changed

+111
-12
lines changed

3 files changed

+111
-12
lines changed

conf.py

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# Configuration file for the Sphinx documentation builder.
2+
#
3+
# -- Project information -----------------------------------------------------
4+
5+
project = 'SPHEREx Archive Documentation'
6+
copyright = '2025 SPHEREx Archive -- IPAC/IRSA'
7+
author = 'SPHEREx Archive -- IPAC/IRSA'
8+
9+
10+
# -- General configuration ---------------------------------------------------
11+
12+
# Add any Sphinx extension module names here, as strings. They can be
13+
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
14+
# ones.
15+
extensions = [
16+
'myst_nb',
17+
'sphinx_copybutton',
18+
]
19+
20+
myst_enable_extensions = [
21+
'dollarmath',
22+
]
23+
24+
# Add any paths that contain templates here, relative to this directory.
25+
templates_path = ['_templates']
26+
27+
# List of patterns, relative to source directory, that match files and
28+
# directories to ignore when looking for source files.
29+
# This pattern also affects html_static_path and html_extra_path.
30+
exclude_patterns = ['_build', 'notes', '.tox', '.tmp', '.pytest_cache', ]
31+
32+
# Top level README file's sole purpose is for the repo.
33+
exclude_patterns += ['README.md',]
34+
35+
# MyST-NB configuration
36+
nb_execution_timeout = 1200
37+
38+
# -- Options for HTML output -------------------------------------------------
39+
40+
# The theme to use for HTML and HTML Help pages. See the documentation for
41+
# a list of builtin themes.
42+
#
43+
html_theme = 'sphinx_book_theme'
44+
html_title = 'SPHEREx Archive Documentation'
45+
html_logo = '_static/irsa_logo.png'
46+
#html_favicon = '_static/favicon.ico'
47+
html_theme_options = {
48+
"github_url": "https://github.com/Caltech-IPAC/SPHEREx-archive-documentation",
49+
"repository_url": "https://github.com/Caltech-IPAC/SPHEREx-archive-documentation",
50+
"repository_branch": "main",
51+
"use_repository_button": True,
52+
"use_issues_button": True,
53+
"use_edit_page_button": True,
54+
"launch_buttons": {"binderhub_url": "https://mybinder.org",},
55+
"logo": {
56+
"link": "https://irsa.ipac.caltech.edu/",
57+
"alt_text": "NASA/IPAC Infrared Science Archive - Home",
58+
},
59+
"home_page_in_toc": True,
60+
}
61+
62+
63+
# Add any paths that contain custom static files (such as style sheets) here,
64+
# relative to this directory. They are copied after the builtin static files,
65+
# so a file named "default.css" will overwrite the builtin "default.css".
66+
html_static_path = ['_static']
67+
68+
# myst configurations
69+
myst_heading_anchors = 4

documentation/index.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

index.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# SPHEREx Archive at IRSA User Guide
2+
Last updated 13 June 2025
3+
4+
5+
6+
## Introduction
7+
8+
### Document Purpose and Scope
9+
The purpose of this document is to facilitate science with SPHEREx data by providing users with an overview of the SPHEREx data that are available at the NASA/IPAC Infrared Science Archive (IRSA) at Caltech, as well as instructions for accessing and downloading these data. We also provide tips for exploring the data and getting help with any questions you may have. This User Guide will evolve as the SPHEREx project delivers new data products and tools to IRSA to make available to the public.
10+
11+
### SPHEREx Overview
12+
13+
SPHEREx is a NASA Astrophysics Medium Explorer mission that launched in March 2025. During its planned two-year mission, SPHEREx will obtain 0.75-5 micron spectroscopy over the entire sky, with deeper data in the SPHEREx Deep Fields. SPHEREx data will be used to:
14+
15+
* **constrain the physics of inflation** by measuring its imprints on the three-dimensional large-scale distribution of matter,
16+
* **trace the history of galactic light production** through a deep multi-band measurement of large-scale clustering,
17+
* **investigate the abundance and composition of water and biogenic ices** in the early phases of star and planetary disk formation.
18+
19+
The community will also mine SPHEREx data and combine it with synergistic data sets to address a variety of additional topics in astrophysics.
20+
21+
More information is available in the "Mission Overview" section of the SPHEREx Explanatory Supplement.
22+
23+
24+
```{toctree}
25+
---
26+
maxdepth: 1
27+
caption: SHEREx Data at IRSA
28+
---
29+
30+
31+
documentation/spherex_data_products
32+
documentation/spherex_data_access
33+
```
34+
35+
36+
### Additional Resources
37+
38+
[SPHEREx archive at IRSA](https://irsa.ipac.caltech.edu/Missions/spherex.html)
39+
40+
[SPHEREx project website](https://spherex.caltech.edu/)
41+
42+
[SPHEREx Explanatory Supplement](https://irsa.ipac.caltech.edu/data/SPHEREx/docs/spherex_explanatory_supplement.pdf)

0 commit comments

Comments
 (0)