-
Notifications
You must be signed in to change notification settings - Fork 33
/
mkdocs.yml
239 lines (226 loc) · 7.77 KB
/
mkdocs.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
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
site_name: lonboard
repo_name: developmentseed/lonboard
repo_url: https://github.com/developmentseed/lonboard
site_description: Extremely fast geospatial data visualization in Jupyter Notebooks
site_author: Development Seed
# Note: trailing slash recommended with mike:
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-versioning/#publishing-a-new-version
site_url: https://developmentseed.org/lonboard/
docs_dir: docs
extra:
analytics:
provider: plausible
domain: developmentseed.org/lonboard
feedback:
title: Was this page helpful?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful
data: good
note: Thanks for your feedback!
- icon: material/emoticon-sad-outline
name: This page could be improved
data: bad
note: Thanks for your feedback!
social:
- icon: "fontawesome/brands/github"
link: "https://github.com/developmentseed"
- icon: "fontawesome/brands/twitter"
link: "https://twitter.com/developmentseed"
- icon: "fontawesome/brands/linkedin"
link: "https://www.linkedin.com/company/development-seed"
version:
provider: mike
nav:
- "index.md"
- Examples:
- examples/index.md
- examples/internet-speeds.ipynb
- examples/north-america-roads.ipynb
- examples/overture-maps.ipynb
- examples/air-traffic-control.ipynb
- examples/global-boundaries.ipynb
- examples/migration.ipynb
- examples/data-filter-extension.ipynb
- examples/column-layer.ipynb
- examples/linked-maps.ipynb
- Integrations:
- examples/duckdb.ipynb
- ColorPicker: examples/integrations/color-picker.ipynb
- Sidecar: examples/integrations/sidecar.ipynb
- examples/ais-movingpandas.ipynb
- 30 Day Map Challenge:
- "Day 1: Points": examples/map_challenge/1-points.ipynb
- "Day 6: Asia": examples/map_challenge/6-asia.ipynb
- API Reference:
- api/viz.md
- api/map.md
- Layers:
- api/layers/bitmap-layer.md
- api/layers/bitmap-tile-layer.md
- api/layers/column-layer.md
- api/layers/heatmap-layer.md
- api/layers/path-layer.md
- api/layers/point-cloud-layer.md
- api/layers/polygon-layer.md
- api/layers/scatterplot-layer.md
- api/layers/solid-polygon-layer.md
- api/layers/base-layer.md
- Layer Extensions:
- api/layer-extensions/index.md
- api/layer-extensions/brushing-extension.md
- api/layer-extensions/collision-filter-extension.md
- api/layer-extensions/data-filter-extension.md
- api/layer-extensions/path-style-extension.md
- api/basemap.md
- api/colormap.md
- api/controls.md
- api/traits.md
- Experimental:
- Layers:
- api/layers/arc-layer.md
- api/layers/text-layer.md
- api/layers/trips-layer.md
- cli.md
- Ecosystem:
- ecosystem/index.md
- ecosystem/geopandas.md
- ecosystem/duckdb.md
- ecosystem/geoarrow.md
- ecosystem/pyodide.md
- ecosystem/jupyter-widgets.md
- ecosystem/panel.md
- ecosystem/shiny.md
- external-resources.md
- Performance: performance.md
- troubleshooting.md
- Changelog: CHANGELOG.md
- Alternatives: alternatives.md
- "How it works?":
- how-it-works/index.md
- how-it-works/internals.md
watch:
- lonboard
- docs
theme:
name: material
custom_dir: docs/overrides
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
primary: teal
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to system preference
font:
text: Roboto
code: Roboto Mono
# logo: img/geopolars_logo.svg
features:
- content.code.annotate
- content.code.copy
- navigation.indexes
- navigation.instant
- navigation.tracking
- search.suggest
- search.share
plugins:
- search
- social
- mike:
alias_type: "copy"
canonical_version: "latest"
- mkdocs-jupyter:
include_source: true
ignore: ["**/.ipynb_checkpoints/*.ipynb"]
- mkdocstrings:
enable_inventory: true
handlers:
python:
paths: [lonboard]
options:
docstring_section_style: list
docstring_style: google
line_length: 80
separate_signature: true
show_root_heading: true
show_signature_annotations: true
show_source: false
show_symbol_type_toc: true
signature_crossrefs: true
extensions:
- griffe_inherited_docstrings
import:
- https://arrow.apache.org/docs/objects.inv
- https://contextily.readthedocs.io/en/stable/objects.inv
- https://docs.python.org/3/objects.inv
- https://fiona.readthedocs.io/en/stable/objects.inv
- https://geoarrow.github.io/geoarrow-rs/python/latest/objects.inv
- https://geopandas.org/en/stable/objects.inv
- https://geopy.readthedocs.io/en/stable/objects.inv
- https://ipython.readthedocs.io/en/stable/objects.inv
- https://ipywidgets.readthedocs.io/en/stable/objects.inv
- https://kylebarron.dev/arro3/latest/objects.inv
- https://matplotlib.org/stable/objects.inv
- https://movingpandas.readthedocs.io/en/main/objects.inv
- https://numpy.org/doc/stable/objects.inv
- https://pandas.pydata.org/pandas-docs/stable/objects.inv
- https://pola-rs.github.io/polars/py-polars/html/objects.inv
- https://pyepsg.readthedocs.io/en/stable/objects.inv
- https://pygeos.readthedocs.io/en/latest/objects.inv
- https://pyogrio.readthedocs.io/en/stable/objects.inv
- https://pyproj4.github.io/pyproj/stable/objects.inv
- https://pysal.org/libpysal/objects.inv
- https://pysal.org/mapclassify/objects.inv
- https://python-visualization.github.io/folium/latest/objects.inv
- https://rasterio.readthedocs.io/en/stable/objects.inv
- https://residentmario.github.io/geoplot/objects.inv
- https://rtree.readthedocs.io/en/stable/objects.inv
- https://scitools.org.uk/cartopy/docs/latest/objects.inv
- https://shapely.readthedocs.io/en/stable/objects.inv
- https://traitlets.readthedocs.io/en/stable/objects.inv
- https://xyzservices.readthedocs.io/en/stable/objects.inv
# https://github.com/developmentseed/titiler/blob/50934c929cca2fa8d3c408d239015f8da429c6a8/docs/mkdocs.yml#L115-L140
markdown_extensions:
- admonition
- attr_list
- codehilite:
guess_lang: false
- def_list
- footnotes
- md_in_html
- pymdownx.arithmatex
- pymdownx.betterem
- pymdownx.caret:
insert: false
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.escapeall:
hardbreak: true
nbsp: true
- pymdownx.magiclink:
hide_protocol: true
repo_url_shortener: true
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- toc:
permalink: true