rcrisp

rcrisp provides tools to automate the morphological delineation of riverside urban areas.

4
contributors
Get started
1368 commitsLast commit ≈ 1 week ago17 stars1 fork

Description

rcrisp

R-CMD-check Project Status: Active – The project has reached a stable, usable
state and is being actively
developed. DOI CRAN
status name status
badge Research Software
Directory

rcrisp provides tools to automate the morphological delineation of riverside urban areas following the CRiSp (City River Spaces) method.

Installation

You can install the released version of rcrisp from CRAN with:

install.packages("rcrisp")

You can install the development version of rcrisp from GitHub with:

# install.packages("pak")
pak::pak("CityRiverSpaces/rcrisp")

Example

This is a basic example which shows you how to solve a common problem:

library(rcrisp)

# Set location parameters
city_name <- "Bucharest"
river_name <- "Dâmbovița"
epsg_code <- 32635

# Get base layer for plotting
bb <- get_osm_bb(city_name)
streets <- get_osm_streets(bb, epsg_code)$geometry
railways <- get_osm_railways(bb, epsg_code)$geometry

# Delineate river corridor
bd <- delineate(city_name, river_name, segments = TRUE)
corridor <- bd$corridor
segments <- bd$segments

# Plot results
plot(corridor)
plot(railways, col = "darkgrey", add = TRUE, lwd = 0.5)
plot(streets, add = TRUE)
plot(segments, border = "orange", add = TRUE, lwd = 3)
plot(corridor, border = "red", add = TRUE, lwd = 3)

Contributing

rcrisp is in a stable state of development, with some degree of active subsequent development as envisioned by the primary authors.

We also look very much forward to contributions. See the Contributing Guide for further details.

This package is released with a Contributor Code of Conduct. By contributing to this project you agree to abide by its terms.

Keywords
Programming languages
  • R 95%
  • TeX 5%
License
</>Source code

Participating organisations

Delft University of Technology
Netherlands eScience Center

Contributors

Related projects

CRiSp

City River Spaces, a tool for automated and scalable delineation of urban river spaces with spatial-temporal big data

Updated 1 week ago
Finished

Related software

rcoins

RC

Identify continuous lines in a spatial network.

Updated 1 week ago
4

rcrisp Shiny app

RC

Shiny web app for the rcrisp software package.

Updated 1 month ago
2

visor

VI

The goal of visor is to provide a set of tools for visibility analysis.

Updated 1 week ago
2