forked from up42/up42-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
173 lines (164 loc) · 5.03 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
## Project information
site_name: UP42 Python SDK
site_url: https://up42.github.io/up42-py/
site_description: UP42 Python SDK
## Repository
repo_name: up42-py
repo_url: https://github.com/up42/up42-py
edit_uri: '' #disables edit button
# Copyright
copyright: UP42 2023
## Social Media
extra:
social:
- icon: fontawesome/solid/house
link: https://up42.com
- icon: fontawesome/brands/twitter
link: https://twitter.com/up42_
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/up42/
- icon: fontawesome/brands/github-alt
link: https://github.com/up42
- icon: fontawesome/brands/docker
link: https://hub.docker.com/u/up42
- icon: fontawesome/solid/envelope
link: mailto:support@up42.com
analytics:
provider: google
property: 'UA-132885718-1'
## Page tree
nav:
- Home: index.md
- Getting Started:
- Installation: installation.md
- Authentication: authentication.md
- Search & Order data: search_order.md
- Satellite Tasking: tasking.md
- Storage Assets: storage.md
- Run Analytics Workflow: analytics_workflow.md
- Advanced:
- Functionality: structure.md
- Geometry Handling: geometry_handling.md
- Visualizations: visualizations.md
- Webhooks: webhooks.md
- Example Notebooks:
- Pleiades Reflectance (Download): examples/data-block-examples/pleiades-download-example.ipynb
- NEXTMap One - Elevation Data (Streaming) and Viewshed: examples/data-block-examples/nextmapone-viewshed-data-example.ipynb
- Open Street Map: examples/data-block-examples/osm-example.ipynb
- Ship Identification: examples/advanced/ship-identification.ipynb
- Code Reference:
- up42: reference/up42-reference.md
- Catalog: reference/catalog-reference.md
- Tasking: reference/tasking-reference.md
- Storage: reference/storage-reference.md
- Order: reference/order-reference.md
- Asset: reference/asset-reference.md
- Project: reference/project-reference.md
- Workflow: reference/workflow-reference.md
- Job: reference/job-reference.md
- JobCollection: reference/jobcollection-reference.md
- JobTask: reference/jobtask-reference.md
- Webhooks: reference/webhooks-reference.md
- Changelog & FAQ:
- Changelog: CHANGELOG.md
- FAQ & Support: support-faq.md
- Privacy Policy: 'https://up42.com/legal/privacy'
## Configuration
theme:
name: material
custom_dir: docs/theme_override_home/
# 404 page
static_templates:
- 404.html
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
# Default values, taken from mkdocs_theme.yml
language: en
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.indexes
- navigation.expand
palette:
primary: indigo
accent: purple
font:
text: Roboto
code: Roboto Mono
icon: # from .icons path. Add to theme override for custom logo.
logo: up42-logo # top left header logo
favicon: assets/logo-up42.ico #browser tab logo
## Plugins
plugins:
- search
- autolinks
- mkdocs-jupyter:
include_source: False
ignore_h1_titles: True
include: ["examples/data-block-examples/pleiades-download-example.ipynb",
"examples/data-block-examples/nextmapone-viewshed-data-example.ipynb",
"examples/data-block-examples/osm-example.ipynb",
"examples/advanced/ship-identification.ipynb"]
- macros:
module_name: docs/macros
- exclude:
glob:
- "*config*.json"
- "*cfg*.json"
- ".ipynb_checkpoints"
- "*examples/project*"
- "*swagger*"
- PULL_REQUEST_TEMPLATE.md
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_root_toc_entry: False
show_root_heading: False
show_source: True
show_category_heading: True
show_bases: False
selection:
filters:
- "!^_" # exclude all members starting with _
watch:
- up42
## Custom theme additions
extra_javascript:
- 'stylesheets/extra.js'
extra_css:
- stylesheets/extra.css
## Extensions
markdown_extensions:
- markdown.extensions.admonition
- markdown.extensions.attr_list
- markdown.extensions.md_in_html
- markdown.extensions.def_list
- markdown.extensions.footnotes
- markdown.extensions.meta
- markdown.extensions.toc:
baselevel: 1
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde