forked from alan-turing-institute/clim-recal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_quarto.yml
132 lines (121 loc) · 4.15 KB
/
_quarto.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
project:
title: "clim-recal"
type: website
output-dir: _site
preview:
port: 8080
browser: false
render:
- "README.md"
- "setup-instructions.md"
- "!clim-recal.Rproj"
- "docs/cpm_projection.qmd"
- "docs/reference"
- "docs/contributing.md"
- "docs/download.qmd"
- "docs/datasets.qmd"
- "docs/docker-configurations.qmd"
- "docs/deprecated_pipeline.qmd"
- "python/README.md"
- "notebooks/cpm_projection_diff_plots.ipynb"
- "notebooks/cpm_projection_diff_plots_linear_nearest.ipynb"
# - "notebooks/Assessing_bc_data/MethodsAssessment_DecWorkshop.Rmd"
# Requires dataset mounted to run notebook
toc: True
number-sections: True
theme:
light: flatly
dark: darkly
# tell quarto to read the generated sidebar
metadata-files:
- _sidebar.yml
website:
back-to-top-navigation: true
sidebar:
style: "docked"
search: true
contents:
- text: "Summary"
href: "README.md"
- text: "Install"
href: "setup-instructions.md"
- text: "Pipeline Description"
href: "python/README.md"
- text: "Download Datasets"
href: "docs/download.qmd"
- text: "Reproducibility"
href: "docs/reproducibility.qmd"
# TODO: change name to deprecated?
- section: "Analysis in R"
href: "R/README.md"
contents:
- href: "R/misc/Identifying_Runs.md"
text: Identifying Runs
- section: "Comparing R and Python"
contents:
- href: "R/comparing-r-and-python/HADs-reprojection/WIP-Comparing-HADs-grids.md"
text: "WIP Comparing HADs grids"
- section: "API Reference"
href: "docs/reference/index.qmd"
contents:
- href: "docs/reference/clim_recal.pipeline.qmd"
text: "Pipeline"
- href: "docs/reference/clim_recal.config.qmd"
text: "Configure"
- href: "docs/reference/clim_recal.ceda_ftp_download.qmd"
text: "CEDA Data Access"
- href: "docs/reference/clim_recal.data_loader.qmd"
text: "Data Loading"
- href: "docs/reference/clim_recal.resample.qmd"
text: "Data Resampling"
- section: "Utilities"
contents:
- href: "docs/reference/clim_recal.utils.core.qmd"
text: "core"
- href: "docs/reference/clim_recal.utils.server.qmd"
text: "server"
- href: "docs/reference/clim_recal.utils.xarray.qmd"
text: "xarray"
- href: "docs/reference/clim_recal.utils.data.qmd"
text: "data"
- text: "Contributing"
href: "docs/contributing.md"
- section: "Appendix"
contents:
- section: "CPM Projection Analysis"
href: "docs/cpm_projection.qmd"
contents:
- text: "Temporal Interpolation Artefacts"
href: "notebooks/cpm_projection_diff_plots.ipynb"
- text: "Nearest vs Linear Temporal Interpolation"
href: "notebooks/cpm_projection_diff_plots_linear_nearest.ipynb"
- text: "Docker"
href: "docs/docker-configurations.qmd"
- text: "Deprecated"
href: "docs/deprecated_pipeline.qmd"
quartodoc:
# the name used to import the package you want to create reference docs for
package: python
dir: docs/reference
# The below probably requires a non `python` package name
# dynamic: true
# render_interlinks: true
# write sidebar data to this file
sidebar: _sidebar.yml
source_dir: python/clim_recal
# see: https://github.com/alan-turing-institute/clim-recal/issues/128
sections:
- title: Data Source Management
desc: How data is downloaded and processed
contents:
# the functions being documented in the package.
# you can refer to anything: class methods, modules, etc..
- clim_recal.pipeline
- clim_recal.ceda_ftp_download
- clim_recal.data_loader
- clim_recal.config
- clim_recal.resample
- clim_recal.utils.core
- clim_recal.utils.server
- clim_recal.utils.xarray
- clim_recal.utils.data