-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathmkdocs.yml
More file actions
74 lines (68 loc) · 3.31 KB
/
Copy pathmkdocs.yml
File metadata and controls
74 lines (68 loc) · 3.31 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
site_name: Diving into pygeoapi
site_description: "pygeoapi is an OGC Reference Implementation supporting numerous OGC API specifications. This workshop will cover publishing geospatial data to the Web using pygeoapi in support of the suite of OGC API standards."
site_author: The pygeoapi community
copyright: "© 2025 pygeoapi community"
site_url: https://geopython.github.io/diving-into-pygeoapi
repo_url: https://github.com/geopython/diving-into-pygeoapi
nav:
- Home: index.md
- Introduction to pygeoapi: introduction.md
- Workshop environment setup: setup.md
- Standards: standards.md
- Publishing:
- publishing/index.md
- Exercise 1 - Your first dataset: publishing/first.md
- Exercise 2 - Vector data via OGC API - Features: publishing/ogcapi-features.md
- Exercise 3 - Raster data via OGC API - Coverages: publishing/ogcapi-coverages.md
- Exercise 4 - Maps of geospatial data via OGC API - Maps: publishing/ogcapi-maps.md
- Exercise 5 - Tiles of geospatial data via OGC API - Tiles: publishing/ogcapi-tiles.md
- Exercise 6 - Metadata via OGC API - Records: publishing/ogcapi-records.md
- Exercise 7 - Environmental data via OGC API - Environmental Data Retrieval: publishing/ogcapi-edr.md
- Exercise 8 - Functions via OGC API - Processes: publishing/ogcapi-processes.md
- Advanced topics:
- advanced/index.md
- Multilingual support: advanced/i18n.md
- CRS support: advanced/crs.md
- UI customization and templating: advanced/ui-custom-templates.md
- Using pygeoapi in downstream applications: advanced/downstream-applications.md
- Search Engine Optimization (SEO): advanced/seo.md
- Security and access control: advanced/security-access-control.md
- Semantic Web and Linked Data: advanced/semantic-web-linked-data.md
- Cloud deployment: advanced/cloud.md
- INSPIRE support: advanced/inspire.md
- Administration: advanced/administration.md
- Exercise 9 - pygeoapi as a bridge to other services: advanced/bridges.md
- Conclusion: conclusion.md
use_directory_urls: true
theme:
name: material
palette:
# See https://squidfunk.github.io/mkdocs-material/setup/changing-the-colors/#color-scheme
# Default is indigo (blue)
scheme: pygeoapi
features:
- navigation.indexes
favicon: assets/favicon.ico
logo: assets/images/pygeoapi-icon-notrans.png
plugins:
- search
- print-site
markdown_extensions:
- meta # option to add some meta tags on top, title, author, date, etc
- admonition # adds the note, question, tip boxes, eg: !!! tip "my tip"
- pymdownx.details # advanced collapsible panels
- pymdownx.superfences # advanced features; such as line number, flow chart, python shell
- pymdownx.tabbed:
alternate_style: true
- footnotes # notes bottom of page
- attr_list # used to size images
- md_in_html # used to size images
extra_css:
# pygeoapi primary color with light and dark variations from material.io
# https://material.io/resources/color/#!/?view.left=0&view.right=1
- assets/stylesheets/pygeoapi.css
- assets/stylesheets/termynal.css
- assets/stylesheets/custom.css
extra_javascript:
- assets/javascripts/termynal.js
- assets/javascripts/custom.js