-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmkdocs.yml
More file actions
152 lines (143 loc) · 5.92 KB
/
Copy pathmkdocs.yml
File metadata and controls
152 lines (143 loc) · 5.92 KB
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
site_name: climakitae
site_description: ClimakitAE is an open-source Python library for accessing and analyzing Cal-Adapt's Data Catalog - a multi-TB ARCO dataset for downscaled climate projections and historical data observations.
site_url: https://cal-adapt.github.io/climakitae/
repo_url: https://github.com/cal-adapt/climakitae
repo_name: cal-adapt/climakitae
edit_uri: edit/main/docs-mkdocs/
docs_dir: docs-mkdocs
site_dir: site
# TEMPLATE.md is an authoring scaffold (not user docs); exclude from the build
# so its placeholder cross-refs do not trigger autorefs warnings.
exclude_docs: |
climate-data-interface/processors/TEMPLATE.md
# Pages that build (so autorefs and direct URLs keep working) but are kept
# out of the sidebar to reduce visual noise. The ``*-detailed`` pages exist
# only to host the autodoc directive after the matching landing page was
# converted into a pointer; users should land on the parent page.
not_in_nav: |
api/param-validation-detailed.md
api/processors.md
copyright: Copyright 2026, Cal-Adapt Analytics Engine
theme:
name: material
logo: _static/cae-map.png
favicon: _static/cae-map.png
features:
- navigation.instant
- navigation.sections
- navigation.top
- content.code.copy
- content.action.edit
- content.tabs.link
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue
accent: blue
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
accent: blue
toggle:
icon: material/weather-sunny
name: Switch to light mode
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
inventories:
- url: https://docs.python-requests.org/en/latest/objects.inv
- url: https://xarray.pydata.org/en/stable/objects.inv
- url: https://docs.dask.org/en/latest/objects.inv
- url: https://geopandas.org/objects.inv
options:
show_source: true
show_docstring_description: true
show_docstring_examples: true
show_docstring_other_parameters: true
docstring_style: numpy
members_order: source
merge_init_into_class: true
markdown_extensions:
- admonition
- attr_list
- md_in_html
- tables
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
extra_javascript:
- https://unpkg.com/mermaid@11/dist/mermaid.min.js
nav:
- Home: index.md
- Get Started: getting-started.md
- Notebook Gallery: notebook-gallery.md
- ClimateData:
- Overview: climate-data-interface/index.md
- Core Concepts: climate-data-interface/concepts.md
- How-To Guides:
- Overview: climate-data-interface/howto.md
- Clip Data: climate-data-interface/howto/clip.md
- Access Boundary Geometries: climate-data-interface/howto/boundary-accessors.md
- Export Data: climate-data-interface/howto/export.md
- Warming Level Analysis: climate-data-interface/howto/warming-levels.md
- Bias Correction: climate-data-interface/howto/bias-correction.md
- Batch Processing: climate-data-interface/howto/batch-processing.md
- Combining Techniques: climate-data-interface/howto/combining-techniques.md
- Derived Variables: climate-data-interface/howto/derived-variables.md
- Time-Based Queries: climate-data-interface/howto/time-based-queries.md
- Architecture & Internals: climate-data-interface/architecture.md
- Processor Reference:
- Overview: climate-data-interface/processors/index.md
- TimeSlice: climate-data-interface/processors/time_slice.md
- WarmingLevel: climate-data-interface/processors/warming_level.md
- Clip: climate-data-interface/processors/clip.md
- Export: climate-data-interface/processors/export.md
- Concatenate: climate-data-interface/processors/concatenate.md
- ConvertUnits: climate-data-interface/processors/convert_units.md
- BiasAdjustToStation: climate-data-interface/processors/bias_adjust_model_to_station.md
- MetricCalc: climate-data-interface/processors/metric_calc.md
- FilterUnadjustedModels: climate-data-interface/processors/filter_unadjusted_models.md
- DropLeapDays: climate-data-interface/processors/drop_leap_days.md
- ConvertToLocalTime: climate-data-interface/processors/convert_to_local_time.md
- UpdateAttributes: climate-data-interface/processors/update_attributes.md
- API Reference:
- User Interface:
- ClimateData class: api/climate-data.md
- Dataset Factory: api/dataset-factory.md
- Dataset Pipeline: api/dataset.md
- Internals:
- Parameter Validation: api/param-validation.md
- Data Access: api/data-access.md
- Processor Utilities: api/processor-utilities.md
- User-Facing Modules:
- Explore: api/explore.md
- Tools: api/tools.md
- Util: api/util.md
- Derived Variables: api/derived-variables.md
- Migration:
- Legacy to ClimateData: migration/legacy-to-climate-data.md
- Legacy API:
- Overview: legacy/index.md
- Core Concepts: legacy/concepts.md
- Reference:
- Data Interface: legacy/data-interface.md
- Boundaries: legacy/boundaries.md
- Data Loading: legacy/data-load.md
- Data Export: legacy/data-export.md
- Constants: legacy/constants.md
- Paths: legacy/paths.md
- Contributing: contributing.md