-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathzensical.toml
More file actions
117 lines (109 loc) · 5.61 KB
/
zensical.toml
File metadata and controls
117 lines (109 loc) · 5.61 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
[project]
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 = "© 2022 - 2026 pygeoapi community"
site_url = "https://dive.pygeoapi.io/"
repo_url = "https://github.com/geopython/diving-into-pygeoapi"
edit_uri = "edit/main/workshop/content/docs"
docs_dir = "docs"
directory_urls = true
extra_css = [
"assets/stylesheets/pygeoapi.css"
]
nav = [
{ "Home" = "index.md"},
{ "Introduction to pygeoapi" = "introduction.md"},
{ "Workshop environment setup" = "setup.md"},
{ "Standards" = "standards.md"},
{ "Publishing" = [
{ "Index" = "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" = [
{ "Index" = "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"}
]
[project.theme]
language = "en"
variant = "classic"
primary = "black"
favicon = "assets/favicon.ico"
logo = "assets/images/pygeoapi-icon-notrans.png"
features = [
"content.action.edit",
"content.action.view",
"navigation.top",
"navigation.tracking.prev_next",
"navigation.tracking.section",
"navigation.indexes"
]
#plugins:
# - i18n:
# languages:
# - locale: en
# name: English
# default: true
# build: true
# - locale: pt
# name: Portuguese
# site_name: Mergulhando na pygeoapi
# build: true
# nav_translations:
# Home: Início
# Introduction to pygeoapi: Introdução á pygeoapi
# Workshop environment setup: Configuração do ambiente da workshop
# Standards: Normas
# Publishing: Publicação
# "Exercise 1 - Your first dataset": "Exercício 1 - O meu primeiro conjunto de dados"
# "Exercise 2 - Vector data via OGC API - Features": "Exercício 2 - Dados vetoriais via OGC API - Features"
# "Exercise 3 - Raster data via OGC API - Coverages": "Exercício 3 - Dados raster via OGC API - Coverages"
# "Exercise 4 - Maps of geospatial data via OGC API - Maps": "Exercício 4 - Mapas de dados geoespaciais via OGC API - Maps"
# "Exercise 5 - Tiles of geospatial data via OGC API - Tiles": "Exercício 5 - Tiles de dados geoespaciais via OGC API - Tiles"
# "Exercise 6 - Metadata via OGC API - Records": "Exercício 6 - Metadados via OGC API - Records"
# "Exercise 7 - Environmental data via OGC API - Environmental Data Retrieval": "Exercício 7 - Dados ambientais via OGC API - Environmental Data Retrieval"
# "Exercise 8 - Functions via OGC API - Processes": "Exercício 8 - Funções via OGC API - Processes"
# "Advanced topics": "Tópicos avançados"
# "Multilingual support": "Suporte multilíngue"
# "CRS support": "Suporte a CRS"
# "UI customization and templating": "Personalização de UI e templating"
# "Using pygeoapi in downstream applications": "Uso da pygeoapi em aplicações downstream"
# "Search Engine Optimization (SEO)": "Otimização para mecanismos de busca (SEO)"
# "Security and access control": "Segurança e controle de acessos"
# "Semantic Web and Linked Data": "Web Semântica e Linked Data"
# "Cloud deployment": "Implantação na cloud"
# "INSPIRE support": "Suporte INSPIRE"
# Administration: Administração
# "Exercise 9 - pygeoapi as a bridge to other services": "Exercício 9 - pygeoapi como uma ponte para outros serviços"
# Conclusion: Conclusão
# - print-site
[project.extra]
homepage = "https://dive.pygeoapi.io"
#default_language = "en"
#languages = ["en", "pt"]
#generate_language_paths = true
#[i18n.routing]
#prefix_default_language = false
alternate = [
{ name = "English", link = "/", lang = "en" },
{ name = "Português", link = "/pt/", lang = "pt" }
]