-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmkdocs.yml
More file actions
211 lines (205 loc) · 6.63 KB
/
mkdocs.yml
File metadata and controls
211 lines (205 loc) · 6.63 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
site_name: Rasteret
site_url: https://terrafloww.github.io/rasteret
site_description: >-
Index-first access to cloud-native GeoTIFF collections for ML and analysis.
A growing catalog of pre-registered datasets, multi-cloud (S3/Azure/GCS), up to 20x faster reads.
site_author: Terrafloww Labs, Inc.
repo_url: https://github.com/terrafloww/rasteret
repo_name: terrafloww/rasteret
edit_uri: edit/main/docs/
docs_dir: docs
exclude_docs: ""
theme:
name: material
custom_dir: docs/overrides
logo: assets/logo-light.svg
favicon: assets/favicon.svg
font:
text: Inter
code: JetBrains Mono
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.instant
- navigation.tracking
- navigation.sections
- navigation.indexes
- navigation.top
- navigation.footer
- navigation.path
- search.suggest
- search.highlight
- content.code.copy
- content.code.annotate
- content.tabs.link
- toc.follow
- header.autohide
icon:
repo: fontawesome/brands/github
extra_css:
- stylesheets/extra.css
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src]
options:
docstring_style: numpy
show_source: true
show_root_heading: true
show_root_full_path: false
show_symbol_type_heading: true
show_symbol_type_toc: true
members_order: source
group_by_category: true
show_category_heading: true
merge_init_into_class: true
show_if_no_docstring: false
show_signature_annotations: true
signature_crossrefs: true
separate_signature: true
annotations_path: brief
filters:
- "!^_"
- "!^__"
- "^__init__$"
- mkdocs-jupyter:
execute: false
include_source: true
theme: light
- llmstxt:
full_output: llms-full.txt
markdown_description: >-
Index-first access to cloud-native GeoTIFF collections for ML and analysis.
A growing catalog of pre-registered datasets, multi-cloud (S3/Azure/GCS), up to 20x faster reads.
sections:
Getting Started:
- getting-started/index.md
Tutorials:
- tutorials/*.ipynb
How-To Guides:
- how-to/*.md
API Reference:
- reference/**/*.md
Explanation:
- explanation/*.md
- section-index
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- attr_list
- md_in_html
- tables
- toc:
permalink: true
- def_list
- pymdownx.tasklist:
custom_checkbox: true
nav:
- Home: index.md
- Getting Started: getting-started/index.md
- Tutorials:
- tutorials/index.md
- "Quickstart": tutorials/01_quickstart.ipynb
- TorchGeo Integration: tutorials/02_torchgeo_09_accelerator.ipynb
- Building from Parquet: tutorials/06_non_stac_cog_collections.ipynb
- Parquet-first Filtering: tutorials/03_parquet_first_filtering.ipynb
- Configuring Custom Collections: tutorials/04_custom_cloud_and_bands.ipynb
- TorchGeo Benchmark: tutorials/05_torchgeo_comparison.ipynb
- How-To Guides:
- how-to/index.md
- Build from Parquet: how-to/build-from-parquet.md
- Point Sampling and Masking: how-to/point-sampling-and-masking.md
- AEF Embeddings: how-to/aef-embeddings.md
- Enriched Parquet Workflows: how-to/enriched-parquet-workflows.md
- ML Training with Splits: how-to/ml-training-splits.md
- Multi-Dataset Training: how-to/multi-dataset-training.md
- Collection Management: how-to/collection-management.md
- Dataset Catalog: how-to/dataset-catalog.md
- Custom Cloud Provider: how-to/custom-cloud-provider.md
- Explanation:
- explanation/index.md
- Architecture: explanation/architecture.md
- Design Decisions: explanation/design-decisions.md
- Correctness Contract: explanation/correctness.md
- Schema Contract: explanation/schema-contract.md
- Ecosystem Comparison: explanation/interop.md
- Benchmarks: explanation/benchmark.md
- API Reference:
- reference/index.md
- Entry Points: reference/rasteret.md
- Catalog: reference/catalog.md
- Core:
- Collection: reference/core/collection.md
- Execution: reference/core/execution.md
- RasterAccessor: reference/core/raster_accessor.md
- Utilities: reference/core/utils.md
- Ingest:
- rasteret.ingest: reference/ingest/index.md
- Normalize: reference/ingest/normalize.md
- STAC Indexer: reference/ingest/stac_indexer.md
- Record Table: reference/ingest/parquet_record_table.md
- COG Enrichment: reference/ingest/enrich.md
- Fetch:
- COG Reader: reference/fetch/cog.md
- Header Parser: reference/fetch/header_parser.md
- Integrations:
- TorchGeo: reference/integrations/torchgeo.md
- Configuration:
- Cloud & Storage: reference/cloud.md
- Types: reference/types.md
- CLI: reference/cli.md
- Contributing: contributing.md
- Releasing: releasing.md
- Changelog: changelog.md
extra:
analytics:
provider: google
property: G-K46JVQZL1C
feedback:
title: Was this page helpful?
ratings:
- icon: material/thumb-up-outline
name: This page was helpful
data: 1
note: Thanks for the feedback!
- icon: material/thumb-down-outline
name: This page could be improved
data: 0
note: >-
Thanks for the feedback! If you have suggestions,
<a href="https://github.com/terrafloww/rasteret/issues/new?labels=docs" target="_blank" rel="noopener">open an issue</a>.
social:
- icon: fontawesome/brands/github
link: https://github.com/terrafloww
- icon: fontawesome/brands/discord
link: https://discord.gg/V5vvuEBc
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/terrafloww-inc/