├── .Rbuildignore ├── .devcontainer └── devcontainer.json ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── docker-build.yml │ └── pkgdown.yaml ├── .gitignore ├── DESCRIPTION ├── Dockerfile ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── get_parallel_values.R ├── globals.R ├── osmactive.R └── test-code │ └── portugal.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── app ├── Dockerfile └── app.R ├── code ├── classify-roads.R └── traffic-volumes.R ├── data-raw ├── .gitignore ├── calculateAverageWidths.R ├── gisruk2025.qmd ├── osm_edinburgh.R ├── test-omitted-ways.qmd ├── test-sett.qmd ├── tests.Rmd └── traffic_volumes_edinburgh.R ├── data ├── cycle_net_f.rda ├── drive_net_f.rda ├── los_table_complete.rda ├── osm_edinburgh.rda ├── traffic_random_edinburgh.rda └── traffic_volumes_edinburgh.rda ├── edinburgh_bus_lanes.png ├── inst └── extdata │ ├── level-of-service-table.csv │ └── los_table_complete.csv ├── man ├── classify_cycle_infrastructure.Rd ├── classify_shared_use.Rd ├── classify_speeds.Rd ├── clean_speeds.Rd ├── clean_widths.Rd ├── count_bus_lanes.Rd ├── cycle_net_f.Rd ├── distance_to_road.Rd ├── drive_net_f.Rd ├── estimate_traffic.Rd ├── et_active.Rd ├── figures │ ├── README-bristol-1.png │ ├── README-cambridge-1.png │ ├── README-christchurch-1.png │ ├── README-christchurch-2.png │ ├── README-dublin-1.png │ ├── README-edinburgh-1.png │ ├── README-leeds-1.png │ ├── README-level_of_service-1.png │ ├── README-lisbon-1.png │ ├── README-london-1.png │ ├── README-minimal_plot_osm-1.png │ └── README-unnamed-chunk-8-1.png ├── get_active_travel_network.Rd ├── get_bus_routes.Rd ├── get_cycling_network.Rd ├── get_driving_network.Rd ├── get_palette_npt.Rd ├── get_parallel_values.Rd ├── get_points.Rd ├── get_traffic_calming.Rd ├── get_travel_network.Rd ├── is_wide.Rd ├── level_of_service.Rd ├── los_table_complete.Rd ├── npt_to_cbd_aadt.Rd ├── npt_to_cbd_aadt_character.Rd ├── npt_to_cbd_aadt_numeric.Rd ├── osm_edinburgh.Rd ├── plot_osm_tmap.Rd └── traffic_volumes_edinburgh.Rd ├── street_space.png └── vignettes ├── .gitignore ├── classify-cbd.Rmd ├── classifying-cycle-infrastructure.qmd ├── gisruk2025.Rmd ├── images └── paste-1.png └── references.bib /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2024 2 | COPYRIGHT HOLDER: Robin Lovelace 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/get_parallel_values.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/R/get_parallel_values.R -------------------------------------------------------------------------------- /R/globals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/R/globals.R -------------------------------------------------------------------------------- /R/osmactive.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/R/osmactive.R -------------------------------------------------------------------------------- /R/test-code/portugal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/R/test-code/portugal.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/app/Dockerfile -------------------------------------------------------------------------------- /app/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/app/app.R -------------------------------------------------------------------------------- /code/classify-roads.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/code/classify-roads.R -------------------------------------------------------------------------------- /code/traffic-volumes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/code/traffic-volumes.R -------------------------------------------------------------------------------- /data-raw/.gitignore: -------------------------------------------------------------------------------- 1 | /.quarto/ 2 | -------------------------------------------------------------------------------- /data-raw/calculateAverageWidths.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/data-raw/calculateAverageWidths.R -------------------------------------------------------------------------------- /data-raw/gisruk2025.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/data-raw/gisruk2025.qmd -------------------------------------------------------------------------------- /data-raw/osm_edinburgh.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/data-raw/osm_edinburgh.R -------------------------------------------------------------------------------- /data-raw/test-omitted-ways.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/data-raw/test-omitted-ways.qmd -------------------------------------------------------------------------------- /data-raw/test-sett.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/data-raw/test-sett.qmd -------------------------------------------------------------------------------- /data-raw/tests.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/data-raw/tests.Rmd -------------------------------------------------------------------------------- /data-raw/traffic_volumes_edinburgh.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/data-raw/traffic_volumes_edinburgh.R -------------------------------------------------------------------------------- /data/cycle_net_f.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/data/cycle_net_f.rda -------------------------------------------------------------------------------- /data/drive_net_f.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/data/drive_net_f.rda -------------------------------------------------------------------------------- /data/los_table_complete.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/data/los_table_complete.rda -------------------------------------------------------------------------------- /data/osm_edinburgh.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/data/osm_edinburgh.rda -------------------------------------------------------------------------------- /data/traffic_random_edinburgh.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/data/traffic_random_edinburgh.rda -------------------------------------------------------------------------------- /data/traffic_volumes_edinburgh.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/data/traffic_volumes_edinburgh.rda -------------------------------------------------------------------------------- /edinburgh_bus_lanes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/edinburgh_bus_lanes.png -------------------------------------------------------------------------------- /inst/extdata/level-of-service-table.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/inst/extdata/level-of-service-table.csv -------------------------------------------------------------------------------- /inst/extdata/los_table_complete.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/inst/extdata/los_table_complete.csv -------------------------------------------------------------------------------- /man/classify_cycle_infrastructure.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/classify_cycle_infrastructure.Rd -------------------------------------------------------------------------------- /man/classify_shared_use.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/classify_shared_use.Rd -------------------------------------------------------------------------------- /man/classify_speeds.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/classify_speeds.Rd -------------------------------------------------------------------------------- /man/clean_speeds.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/clean_speeds.Rd -------------------------------------------------------------------------------- /man/clean_widths.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/clean_widths.Rd -------------------------------------------------------------------------------- /man/count_bus_lanes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/count_bus_lanes.Rd -------------------------------------------------------------------------------- /man/cycle_net_f.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/cycle_net_f.Rd -------------------------------------------------------------------------------- /man/distance_to_road.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/distance_to_road.Rd -------------------------------------------------------------------------------- /man/drive_net_f.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/drive_net_f.Rd -------------------------------------------------------------------------------- /man/estimate_traffic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/estimate_traffic.Rd -------------------------------------------------------------------------------- /man/et_active.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/et_active.Rd -------------------------------------------------------------------------------- /man/figures/README-bristol-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/figures/README-bristol-1.png -------------------------------------------------------------------------------- /man/figures/README-cambridge-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/figures/README-cambridge-1.png -------------------------------------------------------------------------------- /man/figures/README-christchurch-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/figures/README-christchurch-1.png -------------------------------------------------------------------------------- /man/figures/README-christchurch-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/figures/README-christchurch-2.png -------------------------------------------------------------------------------- /man/figures/README-dublin-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/figures/README-dublin-1.png -------------------------------------------------------------------------------- /man/figures/README-edinburgh-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/figures/README-edinburgh-1.png -------------------------------------------------------------------------------- /man/figures/README-leeds-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/figures/README-leeds-1.png -------------------------------------------------------------------------------- /man/figures/README-level_of_service-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/figures/README-level_of_service-1.png -------------------------------------------------------------------------------- /man/figures/README-lisbon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/figures/README-lisbon-1.png -------------------------------------------------------------------------------- /man/figures/README-london-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/figures/README-london-1.png -------------------------------------------------------------------------------- /man/figures/README-minimal_plot_osm-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/figures/README-minimal_plot_osm-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/figures/README-unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /man/get_active_travel_network.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/get_active_travel_network.Rd -------------------------------------------------------------------------------- /man/get_bus_routes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/get_bus_routes.Rd -------------------------------------------------------------------------------- /man/get_cycling_network.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/get_cycling_network.Rd -------------------------------------------------------------------------------- /man/get_driving_network.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/get_driving_network.Rd -------------------------------------------------------------------------------- /man/get_palette_npt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/get_palette_npt.Rd -------------------------------------------------------------------------------- /man/get_parallel_values.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/get_parallel_values.Rd -------------------------------------------------------------------------------- /man/get_points.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/get_points.Rd -------------------------------------------------------------------------------- /man/get_traffic_calming.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/get_traffic_calming.Rd -------------------------------------------------------------------------------- /man/get_travel_network.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/get_travel_network.Rd -------------------------------------------------------------------------------- /man/is_wide.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/is_wide.Rd -------------------------------------------------------------------------------- /man/level_of_service.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/level_of_service.Rd -------------------------------------------------------------------------------- /man/los_table_complete.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/los_table_complete.Rd -------------------------------------------------------------------------------- /man/npt_to_cbd_aadt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/npt_to_cbd_aadt.Rd -------------------------------------------------------------------------------- /man/npt_to_cbd_aadt_character.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/npt_to_cbd_aadt_character.Rd -------------------------------------------------------------------------------- /man/npt_to_cbd_aadt_numeric.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/npt_to_cbd_aadt_numeric.Rd -------------------------------------------------------------------------------- /man/osm_edinburgh.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/osm_edinburgh.Rd -------------------------------------------------------------------------------- /man/plot_osm_tmap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/plot_osm_tmap.Rd -------------------------------------------------------------------------------- /man/traffic_volumes_edinburgh.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/man/traffic_volumes_edinburgh.Rd -------------------------------------------------------------------------------- /street_space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/street_space.png -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | 4 | /.quarto/ 5 | -------------------------------------------------------------------------------- /vignettes/classify-cbd.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/vignettes/classify-cbd.Rmd -------------------------------------------------------------------------------- /vignettes/classifying-cycle-infrastructure.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/vignettes/classifying-cycle-infrastructure.qmd -------------------------------------------------------------------------------- /vignettes/gisruk2025.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/vignettes/gisruk2025.Rmd -------------------------------------------------------------------------------- /vignettes/images/paste-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/vignettes/images/paste-1.png -------------------------------------------------------------------------------- /vignettes/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nptscot/osmactive/HEAD/vignettes/references.bib --------------------------------------------------------------------------------