-
Notifications
You must be signed in to change notification settings - Fork 1
/
_quarto.yml
163 lines (158 loc) · 4.88 KB
/
_quarto.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
project:
type: website
render:
- "index.qmd"
- "docs/"
- "!notebooks/"
- "!docs/source/"
- "!docs/build/"
- "!*.ipynb"
- "!docs/gtfs/*"
preview:
port: 1111
browser: true
watch-inputs: true
navigate: true
resources:
- "docs/_static/**"
website:
title: "Transport Performance"
favicon: docs/_static/favicon.ico
navbar:
logo: docs/_static/tp_logo_white_background.png
left:
- href: docs/getting_started/index.qmd
text: Getting Started
- href: docs/explanation/index.qmd
text: Explanation
- href: docs/how_to/index.qmd
text: How-To
- href: docs/tutorials/index.qmd
text: Tutorials
- href: docs/reference/index.qmd
text: API Reference
right:
- icon: github
menu:
- text: Source code
url: https://github.com/datasciencecampus/transport-network-performance
- text: Open an issue
url: https://github.com/datasciencecampus/transport-network-performance/issues
sidebar:
style: docked
search: true
collapse-level: 1
contents:
- text: Getting Started
href: docs/getting_started/index.qmd
- section: Explanation
href: docs/explanation/index.qmd
contents:
- "docs/explanation/what_is_tp/index.qmd"
- "docs/explanation/calculate_tp/index.qmd"
- "docs/explanation/limitations/index.qmd"
- section: How-To
href: docs/how_to/index.qmd
contents:
- "docs/how_to/uc_pop/index.qmd"
- "docs/how_to/gtfs/index.qmd"
- "docs/how_to/osm/index.qmd"
- section: Tutorials
href: docs/tutorials/index.qmd
contents:
- "docs/tutorials/urban_centre/index.qmd"
- "docs/tutorials/population/index.qmd"
- "docs/tutorials/gtfs/index.qmd"
- "docs/tutorials/osm/index.qmd"
- "docs/tutorials/analyse_network/index.qmd"
- "docs/tutorials/metrics/index.qmd"
- section: API Reference
href: docs/reference/index.qmd
contents:
- auto: "docs/reference/*.qmd"
reader-mode: true
page-footer:
left: >
These docs are built using [Quarto](https://quarto.org/), [quartodoc](https://machow.github.io/quartodoc/get-started/overview.html), and [Diátaxis](https://diataxis.fr/).
center: >
All content is available under the
[Open Government Licence V3.0](https://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/),
except where otherwise stated.
right: >
<a href="https://datasciencecampus.ons.gov.uk/">
<img src="https://datasciencecampus.ons.gov.uk/wp-content/uploads/sites/10/2019/05/DSC.png" alt="Data Science Campus logo" style="height:22px;">
</a>
format:
html:
css: docs/_static/styles.css
mainfont: Arial
theme:
- flatly
- docs/_static/custom.scss
lang: en-GB
metadata-files:
- docs/_sidebar.yml
quartodoc:
title: API reference
package: transport_performance
dir: docs/reference
sidebar: docs/_sidebar.yml
sections:
- title: "`urban_centres`"
desc: >
Modules for detecting urban centres.
- subtitle: "`urban_centres.raster_uc.UrbanCentre`"
desc: >
A class for detecting urban centres using rastered population estimates.
package: transport_performance.urban_centres.raster_uc
contents:
- UrbanCentre
- title: "`population`"
desc: >
Modules for preprocessing population data.
- subtitle: "`population.rasterpop.RasterPop`"
desc: >
A class for preprocessing rastered population estimates.
package: transport_performance.population.rasterpop
contents:
- RasterPop
- title: "`gtfs`"
desc: >
Modules for working with GTFS public transit schedule files.
package: transport_performance.gtfs
contents:
- calendar
- cleaners
- gtfs_utils
- multi_validation
- routes
- validation
- validators
- title: "`osm`"
desc: >
Modules for OpenStreetMap utilities, such are cropping .pbf files to a bounding box.
package: transport_performance.osm
contents:
- osm_utils
- validate_osm
- title: "`analyse_network`"
desc: >
A class wrapping r5py network routing to calculate travel times between all origin/destination cells.
package: transport_performance.analyse_network
contents:
- AnalyseNetwork
- title: "`metrics`"
desc: >
Functions for calculating transport metrics, such as transport performance.
package: transport_performance
contents:
- metrics
- title: "`utils`"
desc: >
Modules to handle common package utility functions.
package: transport_performance.utils
contents:
- defence
- io
- raster
jupyter: python3