-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* First draft of documentation * More detail on tutorial * Format tutorial codeblock * chore: ignored additional quarto docs files * chore: removed GTFS class instance diagram * chore: added consistent preview port * chore: added favicon * chore: styled nav and footer using GAF colour palette * chore: updated layout of about page * chore: added placeholder getting started page * chore: refactored explanations directory * chore: added explanation placeholders * chore: restructured tutorials sidebar hierarchy * chore: reduced size of footer image * chore: added how-to placeholders * chore: updated where do I go now * chore: added diataxis to footer * chore: typos in where do I go now; added contribution section * chore: added tutorials placeholders * chore: added urban centres init for quartodoc * docs: removed method section for quartodoc * docs: added urban centres API * docs: removed method section for quartodoc * docs: added population API * docs: removed methods section for quartodoc * docs: removed methods and warns for quartodoc; added spaces by colons in docstrings * docs: added gtfs API * chore: added osm init for quartodoc * docs: added osm_utils API * docs: removed methods section for quartodoc * docs: added analyse_network API * docs: added metrics API * docs: removed reference section for quartodoc * docs: added utils API * chore: removed sphinx docs * chore: refactored getting started to dir * chore: renamed docs workflow; added java, geospatial, and quarto render steps; removed sphinx steps * chore: updated docs README with quarto instructions * refactor: Minor typo & language * refactor: All sub-indexes use tables with ui sort on numbered items * fix: Typo in yaml * fix: Typos & table render in docstrings * fix: Small typo in rasterpop docstring * fix: Rm curly braces in docstring * docs: Add update to deprecation warning * fix: Typos & clearer explanations in gtfs.multi_validation docstrings * fix: Typo in gtfs.routes docstrings * fix: Minor language opinions in gtfs.validation docstrings * fix: Minor docstring typos in analyse_network * docs: Mention alternative backends not implemented * fix: Minor docstring typo in raster util --------- Co-authored-by: Ethan Moss <[email protected]> Co-authored-by: r-leyshon <[email protected]>
- Loading branch information
1 parent
cbdf383
commit 0d8e0da
Showing
53 changed files
with
522 additions
and
641 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,157 @@ | ||
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: | ||
- auto: "docs/how_to/**/*.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: | ||
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 | ||
- 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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,88 +1,27 @@ | ||
# `docs` folder overview | ||
|
||
This folder contains all the source files needed to build package documentation | ||
using [`sphinx`](https://www.sphinx-doc.org/en/master/). | ||
This folder contains all the source files needed to build package documentation. | ||
|
||
## Building the documentation locally | ||
## Using Quarto with Quartodoc | ||
|
||
This is useful whilst editing the documentation locally and previewing new | ||
additions/edits. Following the steps below will render the documenation locally | ||
allowing you to check for any warnings or errors during the build stage. | ||
To build the documentation using Quarto and quartodoc, you will need to install [Quarto](https://quarto.org/docs/get-started/). | ||
|
||
1. Ensure the dependencies in `requirements.txt` have been installed. This will | ||
install `sphinx`, the necessary themes, and all the other Python dependecies | ||
for this package. | ||
The Python package, `quartodoc`, is included in the project 'requirements.txt'. | ||
|
||
2. Call the following from the project root: | ||
Run `quartodoc build` in the top-level folder; this will create a new directory, `docs/reference/` and populate it with automatically generated `.qmd` files for each reference documentation page. | ||
|
||
```bash | ||
make -C docs/ html | ||
``` | ||
Then run `quarto preview` to view a local rendering of the website. | ||
|
||
Or, from the within this docs directory: | ||
Adding to the docs can be done as follows: | ||
|
||
```bash | ||
make html | ||
``` | ||
- New tutorials can be added to `docs/tutorials/`. | ||
- New How-to guides can be added to `docs/how_to/`. | ||
- New explanation guides can be added to `docs/explanation/`. | ||
- In all cases, create a new subdirectory in one of the above areas and then create an `index.qmd` file to add page content. All assets pertaining to the new page can then also be stored within this sub directory. | ||
|
||
> Note: On Windows, if you are using PowerShell the make command may not | ||
work. If this is the case, you should be able to run `.\make.bat html` | ||
after navigating to this directory. | ||
|
||
Calling one of the commands above will trigger `sphinx-build` and render | ||
the documentaion in HTML format within the `build` directory. | ||
|
||
3. Inside `docs/build/html/`, opening/refreshing `index.html` in a browser will | ||
display the documentation landing page. | ||
|
||
## Cleaning the docs folder | ||
|
||
From time to time, it maybe necessary to clean the build folder (e.g., to | ||
unpick some edits that have not made their way through to the browser for some | ||
reason). | ||
|
||
> Note: `sphinx-build` will only rebuild pages if the respective source file(s) | ||
has changed. Calling clean maybe helpful to either force an entire rebuild of | ||
all pages, or include an update that isn't picked up via a source (e.g. a CSS | ||
file update). | ||
To clean the build folder, call the following: | ||
```bash | ||
# from the project root | ||
make -C docs/ clean | ||
# or, from within the docs folder | ||
make clean | ||
``` | ||
It's also possible to combine both the clean and HTML build commands together | ||
as follows: | ||
|
||
```bash | ||
# from the project root | ||
make -C docs/ clean html | ||
# or, from within the docs folder | ||
make clean html | ||
``` | ||
|
||
> Note: the contents of the `docs/build` folder are ignored by Git. Cleaning | ||
the build folder locally will therefore only impact your local documentation | ||
build. | ||
|
||
## Building the documentation 'on push' to a remote branch | ||
|
||
There is a GitHub action set-up (`.github/workflows/sphinx-render.yml`) that | ||
runs on all pushes to any branch. This will attempt to build the `docs/source` | ||
folder content and will fail if `sphinx-build` throws any errors or warnings. | ||
This helps ensure the quality of the documentation on each push and allows | ||
developers to correct any issues sooner. | ||
|
||
The deployment stage of this GitHub action is only done when pushing to the | ||
`dev` branch (i.e. after merging in a PR). Therefore, any changes made to | ||
`docs` in a feature branch will not appear in the deployed documentation. | ||
|
||
> Note: the current implementation of the GitHub action deploys on push to | ||
`dev` but this is subject to change at a later date. It will likely be change | ||
to puses to `main` once an inital release of this package is available. | ||
There is a GitHub action set-up (`.github/workflows/quarto-render.yml`) that | ||
runs on all pushes to the `dev` and `main` branches. This will attempt to render | ||
the content within `docs/` and then deploy them to the `gh-pages` branch. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/*-- scss:defaults --*/ | ||
|
||
// footer config | ||
$footer-bg: #414042; | ||
$footer-fg: white; | ||
|
||
// navbar config | ||
$navbar-bg: #3b7a9e; | ||
|
||
// links and inline styling | ||
$link-color: #206095; | ||
$code-color: #801650; |
File renamed without changes.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
title: "2. Transport Performance: An Example" | ||
description: An overview of how we used `transport_performance` to calculate the transport performance of urban centre public transit networks. | ||
date-modified: 05/16/2024 # must be in MM/DD/YYYY format | ||
categories: ["Explanation"] # see https://diataxis.fr/tutorials-how-to/#tutorials-how-to, delete as appropriate | ||
toc: true | ||
date-format: iso | ||
--- | ||
|
||
🚧 Page under construction 🚧 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
title: Explanation | ||
listing: | ||
type: table | ||
contents: | ||
- "/**/*.qmd" | ||
fields: [title, description, reading-time] | ||
sort: title | ||
sort-ui: true | ||
filter-ui: true | ||
--- | ||
|
||
These explanation pages provide an understanding of what Transport Performance is, how it is calculated, and methodology limitations. |
Oops, something went wrong.