forked from nsidc/earthaccess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
101 lines (94 loc) · 3.21 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
site_name: earthaccess
site_description: Client library for NASA Earthdata APIs
site_url: https://github.com/nsidc/earthaccess
theme:
name: "material"
logo: earth.png
favicon: earth.png
palette:
- scheme: default
primary: teal
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
repo_name: nsidc/earthaccess
repo_url: https://github.com/nsidc/earthaccess
edit_uri: ""
extra_css:
- css/styles.css
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_style: google
docstring_options:
ignore_init_summary: no
merge_init_into_class: yes
show_submodules: no
rendering:
show_root_heading: false
show_source: false
- mkdocs-jupyter:
execute: True
ignore:
- "tutorials/dask.ipynb"
- "**/.ipynb_checkpoints/*"
nav:
- OVERVIEW:
- "Readme": "index.md"
- "Getting started": "tutorials/getting-started.ipynb"
- "Resources": "resources.md"
- HOW-TO:
- "Authenticate with Earthdata Login": "howto/authenticate.md"
- "Search NASA datasets using filters": "howto/search-collections.md"
- "Search for data using filters": "howto/search-granules.md"
- "Determine if a dataset is available in the cloud": "howto/storage-location.md"
- "Using authenticated sessions to access data": "howto/edl.ipynb"
- "Download data from on-prem location": "howto/onprem.md"
- "Direct S3 access - Open/stream files in the cloud": "howto/cloud.md"
- TUTORIALS:
- "Accesing remote NASA data with fsspec": "tutorials/file-access.ipynb"
- "Search and access of restricted datasets": "tutorials/restricted-datasets.ipynb"
- "Reproducing NASA sea level rise infographic": "tutorials/SSL.ipynb"
- "Accessing and visualizing EMIT data with a few lines of code": "tutorials/emit-earthaccess.ipynb"
# - 'Distributing workloads with Dask clusters': 'tutorials/dask.ipynb'
- USER REFERENCE:
- API:
- "Search and Access": "user-reference/api/api.md"
- Modules:
- Collections:
- "Collection Queries": "user-reference/collections/collections-query.md"
- "Collection Results": "user-reference/collections/collections.md"
- Granules:
- "Granule Queries": "user-reference/granules/granules-query.md"
- "Granule Results": "user-reference/granules/granules.md"
- Store:
- "Store": "user-reference/store/store.md"
- Auth:
- "Auth": "user-reference/auth/auth.md"
- Glossary:
- "NASA Glossary": "user-reference/glossary/nasa-glossary.md"
- "Cloud Computing Terminology": "user-reference/glossary/cloud-glossary.md"
markdown_extensions:
- admonition
- callouts
- pymdownx.details
- meta
- toc:
toc_depth: 2
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
watch:
- docs
- earthaccess
- notebooks