-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathzensical.pt.toml
More file actions
70 lines (67 loc) · 3.18 KB
/
zensical.pt.toml
File metadata and controls
70 lines (67 loc) · 3.18 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
[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"
site_dir = "site/pt"
directory_urls = true
extra_css = [
"assets/stylesheets/pygeoapi.css"
]
# Native translated nav for Portuguese
nav = [
{ "Início" = "index.pt.md"},
{ "Introdução á pygeoapi" = "introduction.pt.md"},
{ "Configuração do ambiente da workshop" = "setup.pt.md"},
{ "Normas" = "standards.pt.md"},
{ "Publicação" =[
{ "Index" = "publishing/index.md"},
{ "Exercício 1 - O meu primeiro conjunto de dados" = "publishing/first.pt.md"},
{ "Exercício 2 - Dados vetoriais via OGC API - Features" = "publishing/ogcapi-features.pt.md"},
{ "Exercício 3 - Dados raster via OGC API - Coverages" = "publishing/ogcapi-coverages.pt.md"},
{ "Exercício 4 - Mapas de dados geoespaciais via OGC API - Maps" = "publishing/ogcapi-maps.pt.md"},
{ "Exercício 5 - Tiles de dados geoespaciais via OGC API - Tiles" = "publishing/ogcapi-tiles.pt.md"},
{ "Exercício 6 - Metadados via OGC API - Records" = "publishing/ogcapi-records.pt.md"},
{ "Exercício 7 - Dados ambientais via OGC API - Environmental Data Retrieval" = "publishing/ogcapi-edr.pt.md"},
{ "Exercício 8 - Funções via OGC API - Processes" = "publishing/ogcapi-processes.pt.md"}
]},
{ "Tópicos avançados" =[
{ "Index" = "advanced/index.pt.md"},
{ "Suporte multilíngue" = "advanced/i18n.pt.md"},
{ "Suporte a CRS" = "advanced/crs.pt.md"},
{ "Personalização de UI e templating" = "advanced/ui-custom-templates.pt.md"},
{ "Uso da pygeoapi em aplicações downstream" = "advanced/downstream-applications.pt.md"},
{ "Otimização para mecanismos de busca (SEO)" = "advanced/seo.pt.md"},
{ "Segurança e controle de acessos" = "advanced/security-access-control.pt.md"},
{ "Web Semântica e Linked Data" = "advanced/semantic-web-linked-data.pt.md"},
{ "Implantação na cloud" = "advanced/cloud.pt.md"},
{ "Suporte INSPIRE" = "advanced/inspire.pt.md"},
{ "Administração" = "advanced/administration.pt.md"},
{ "Exercício 9 - pygeoapi como uma ponte para outros serviços" = "advanced/bridges.pt.md"}
]},
{ "Conclusão" = "conclusion.pt.md"}
]
[project.theme]
language = "pt"
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"
]
[project.extra]
homepage = "https://dive.pygeoapi.io"
alternate = [
{ name = "English", link = "/", lang = "en" },
{ name = "Português", link = "/pt/", lang = "pt" }
]