|
| 1 | +# Book settings |
| 2 | +# Learn more at https://jupyterbook.org/customize/config.html |
| 3 | + |
| 4 | +title: Earth Observation Data Science Cookbook |
| 5 | +author: the <a href="https://projectpythia.org/">Project Pythia</a> Community |
| 6 | +logo: notebooks/images/logos/pythia_logo-white-rtext.svg |
| 7 | +copyright: "2025" |
| 8 | + |
| 9 | +bibtex_bibfiles: |
| 10 | + - notebooks/references.bib |
| 11 | + |
| 12 | +execute: |
| 13 | + # To execute notebooks via a Binder instead, replace 'cache' with 'binder' |
| 14 | + execute_notebooks: cache |
| 15 | + timeout: 600 |
| 16 | + allow_errors: False # cells with expected failures must set the `raises-exception` cell tag |
| 17 | + |
| 18 | +# Add a few extensions to help with parsing content |
| 19 | +parse: |
| 20 | + myst_enable_extensions: # default extensions to enable in the myst parser. See https://myst-parser.readthedocs.io/en/latest/using/syntax-optional.html |
| 21 | + - amsmath |
| 22 | + - colon_fence |
| 23 | + - deflist |
| 24 | + - dollarmath |
| 25 | + - html_admonition |
| 26 | + - html_image |
| 27 | + - replacements |
| 28 | + - smartquotes |
| 29 | + - substitution |
| 30 | + |
| 31 | +sphinx: |
| 32 | + config: |
| 33 | + linkcheck_ignore: [ |
| 34 | + "https://doi.org/*", |
| 35 | + "https://zenodo.org/badge/*", |
| 36 | + "https://services.eodc.eu/browser/*", |
| 37 | + "https://binder.eo-datascience-cookbook.org/*", |
| 38 | + "https://www.mdpi.com/*", |
| 39 | + ] # don't run link checker on DOI links since they are immutable |
| 40 | + nb_execution_raise_on_error: true # raise exception in build if there are notebook errors (this flag is ignored if building on binder) |
| 41 | + html_favicon: notebooks/images/icons/favicon.ico |
| 42 | + html_last_updated_fmt: "%-d %B %Y" |
| 43 | + html_theme: sphinx_pythia_theme |
| 44 | + html_permalinks_icon: '<i class="fas fa-link"></i>' |
| 45 | + html_theme_options: |
| 46 | + home_page_in_toc: true |
| 47 | + repository_url: https://github.com/ProjectPythia/eo-datascience-cookbook # Online location of your book |
| 48 | + repository_branch: main # Which branch of the repository should be used when creating links (optional) |
| 49 | + use_issues_button: true |
| 50 | + use_repository_button: true |
| 51 | + use_edit_page_button: true |
| 52 | + use_fullscreen_button: true |
| 53 | + analytics: |
| 54 | + google_analytics_id: G-T52X8HNYE8 |
| 55 | + github_url: https://github.com/ProjectPythia |
| 56 | + icon_links: |
| 57 | + - name: YouTube |
| 58 | + url: https://www.youtube.com/channel/UCoZPBqJal5uKpO8ZiwzavCw |
| 59 | + icon: fab fa-youtube-square |
| 60 | + type: fontawesome |
| 61 | + launch_buttons: |
| 62 | + binderhub_url: https://binder.projectpythia.org |
| 63 | + notebook_interface: jupyterlab |
| 64 | + logo: |
| 65 | + link: https://projectpythia.org |
| 66 | + navbar_start: |
| 67 | + - navbar-logo |
| 68 | + navbar_end: |
| 69 | + - navbar-icon-links |
| 70 | + navbar_links: |
| 71 | + - name: Home |
| 72 | + url: https://projectpythia.org |
| 73 | + - name: Foundations |
| 74 | + url: https://foundations.projectpythia.org |
| 75 | + - name: Cookbooks |
| 76 | + url: https://cookbooks.projectpythia.org |
| 77 | + - name: Resources |
| 78 | + url: https://projectpythia.org/resource-gallery.html |
| 79 | + - name: Community |
| 80 | + url: https://projectpythia.org/index.html#join-us |
| 81 | + footer_logos: |
| 82 | + NCAR: notebooks/images/logos/NSF-NCAR_Lockup-UCAR-Dark_102523.svg |
| 83 | + Unidata: notebooks/images/logos/Unidata_logo_horizontal_1200x300.svg |
| 84 | + UAlbany: notebooks/images/logos/UAlbany-A2-logo-purple-gold.svg |
| 85 | + footer_start: |
| 86 | + - footer-logos |
| 87 | + - footer-info |
| 88 | + - footer-extra |
0 commit comments