rcrisp
Automate the morphological delineation of riverside urban areas.
Science Score: 67.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 3 DOI reference(s) in README -
✓Academic publication links
Links to: zenodo.org -
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (16.2%) to scientific vocabulary
Last synced: 6 months ago
·
JSON representation
·
Repository
Automate the morphological delineation of riverside urban areas.
Basic Info
- Host: GitHub
- Owner: CityRiverSpaces
- License: other
- Language: R
- Default Branch: main
- Homepage: https://cityriverspaces.github.io/rcrisp/
- Size: 79.7 MB
Statistics
- Stars: 17
- Watchers: 2
- Forks: 1
- Open Issues: 41
- Releases: 3
Created almost 2 years ago
· Last pushed 6 months ago
Metadata Files
Readme
Changelog
Contributing
License
Code of conduct
Citation
Codemeta
README.Rmd
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
```{r srr-tags, eval=FALSE, echo=FALSE}
#' @srrstats {G1.2} Life cycle badge added in the README and statement on state
#' of development added in the "Contributing" section.
```
# rcrisp
[](https://github.com/CityRiverSpaces/rcrisp/actions/workflows/R-CMD-check.yaml)
[](https://www.repostatus.org/#active)
[](https://doi.org/10.5281/zenodo.15793526)
[](https://CRAN.R-project.org/package=rcrisp)
[](https://lifecycle.r-lib.org/articles/stages.html#stable)
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](https://cran.r-project.org) with:
``` r
install.packages("rcrisp")
```
You can install the development version of rcrisp from [GitHub](https://github.com/) with:
``` r
# install.packages("pak")
pak::pak("CityRiverSpaces/rcrisp")
```
## Example
This is a basic example which shows you how to solve a common problem:
```{r example, warning=FALSE, message=FALSE}
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](https://github.com/CityRiverSpaces/rcrisp/blob/main/.github/CONTRIBUTING.md) for further details.
This package is released with a [Contributor Code of Conduct](https://github.com/CityRiverSpaces/rcrisp/blob/main/.github/CODE_OF_CONDUCT.md). By contributing to this project you agree to abide by its terms.
Owner
- Name: CRiSp
- Login: CityRiverSpaces
- Kind: organization
- Repositories: 1
- Profile: https://github.com/CityRiverSpaces
City River Spaces
Citation (CITATION.cff)
# This CITATION.cff file was generated with cffinit.
# Visit https://bit.ly/cffinit to generate yours today!
cff-version: 1.2.0
title: 'rcrisp: Automate the Delineation of Urban River Spaces'
message: >-
If you use this software, please cite it using the
metadata from this file.
type: software
authors:
- given-names: Claudiu
family-names: Forgaci
email: c.forgaci@tudelft.nl
affiliation: Delft University of Technology
orcid: 'https://orcid.org/0000-0003-3218-5102'
- given-names: Francesco
family-names: Nattino
email: f.nattino@esciencecenter.nl
affiliation: Netherlands eScience Center
orcid: 'https://orcid.org/0000-0003-3286-0139'
contributors:
- given-names: Fakhereh
family-names: Alidoost
email: f.alidoost@esciencecenter.nl
affiliation: Netherlands eScience Center
orcid: 'https://orcid.org/0000-0001-8407-6472'
- given-names: Meiert Willem
family-names: Grootes
email: m.grootes@esciencecenter.nl
affiliation: Netherlands eScience Center
orcid: 'https://orcid.org/0000-0002-5733-4795'
repository-code: 'https://github.com/CityRiverSpaces/rcrisp'
identifiers:
- type: doi
value: 10.5281/zenodo.15793526
abstract: >-
Automates the process of urban river space delineation
using the CRiSp (City River Spaces) method.
keywords:
- urban rivers
- geospatial data
license: Apache-2.0
CodeMeta (codemeta.json)
{
"@context": "https://doi.org/10.5063/schema/codemeta-2.0",
"@type": "SoftwareSourceCode",
"identifier": "rcrisp",
"description": "Provides tools to automate the morphological delineation of riverside urban areas based on a method introduced in Forgaci (2018) <doi:10.7480/abe.2018.31>. Delineation entails the identification of corridor boundaries, segmentation of the corridor, and delineation of the river space using two-dimensional spatial information from street network data and digital elevation data in a projected CRS. The resulting delineation can be used to characterise spatial phenomena that can be related to the river as a central element.",
"name": "rcrisp: Automate the Delineation of Urban River Spaces",
"relatedLink": [
"https://cityriverspaces.github.io/rcrisp/",
"https://CRAN.R-project.org/package=rcrisp",
"https://doi.org/10.5281/zenodo.15793526"
],
"codeRepository": "https://github.com/CityRiverSpaces/rcrisp",
"issueTracker": "https://github.com/CityRiverSpaces/rcrisp/issues",
"license": "Apache License 2",
"version": "0.3.0",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
"url": "https://r-project.org"
},
"runtimePlatform": "R version 4.5.1 (2025-06-13)",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"author": [
{
"@type": "Person",
"givenName": "Claudiu",
"familyName": "Forgaci",
"email": "c.forgaci@tudelft.nl",
"@id": "https://orcid.org/0000-0003-3218-5102"
},
{
"@type": "Person",
"givenName": "Francesco",
"familyName": "Nattino",
"email": "f.nattino@esciencecenter.nl",
"@id": "https://orcid.org/0000-0003-3286-0139"
}
],
"contributor": [
{
"@type": "Person",
"givenName": "Fakhereh",
"familyName": "Alidoost",
"email": "f.alidoost@esciencecenter.nl",
"@id": "https://orcid.org/0000-0001-8407-6472"
},
{
"@type": "Person",
"givenName": "Meiert Willem",
"familyName": "Grootes",
"email": "m.grootes@esciencecenter.nl",
"@id": "https://orcid.org/0000-0002-5733-4795"
}
],
"copyrightHolder": [
{
"@type": "Person",
"givenName": "Claudiu",
"familyName": "Forgaci",
"email": "c.forgaci@tudelft.nl",
"@id": "https://orcid.org/0000-0003-3218-5102"
}
],
"funder": [
{
"@type": "Organization",
"name": "Netherlands eScience Center",
"email": "info@esciencecenter.nl"
}
],
"maintainer": [
{
"@type": "Person",
"givenName": "Claudiu",
"familyName": "Forgaci",
"email": "c.forgaci@tudelft.nl",
"@id": "https://orcid.org/0000-0003-3218-5102"
}
],
"softwareSuggestions": [
{
"@type": "SoftwareApplication",
"identifier": "knitr",
"name": "knitr",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=knitr"
},
{
"@type": "SoftwareApplication",
"identifier": "purrr",
"name": "purrr",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=purrr"
},
{
"@type": "SoftwareApplication",
"identifier": "rmarkdown",
"name": "rmarkdown",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=rmarkdown"
},
{
"@type": "SoftwareApplication",
"identifier": "testthat",
"name": "testthat",
"version": ">= 3.0.0",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=testthat"
},
{
"@type": "SoftwareApplication",
"identifier": "withr",
"name": "withr",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=withr"
}
],
"softwareRequirements": {
"1": {
"@type": "SoftwareApplication",
"identifier": "R",
"name": "R",
"version": ">= 4.1.0"
},
"2": {
"@type": "SoftwareApplication",
"identifier": "checkmate",
"name": "checkmate",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=checkmate"
},
"3": {
"@type": "SoftwareApplication",
"identifier": "dbscan",
"name": "dbscan",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=dbscan"
},
"4": {
"@type": "SoftwareApplication",
"identifier": "dplyr",
"name": "dplyr",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=dplyr"
},
"5": {
"@type": "SoftwareApplication",
"identifier": "lwgeom",
"name": "lwgeom",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=lwgeom"
},
"6": {
"@type": "SoftwareApplication",
"identifier": "osmdata",
"name": "osmdata",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=osmdata"
},
"7": {
"@type": "SoftwareApplication",
"identifier": "rcoins",
"name": "rcoins",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=rcoins"
},
"8": {
"@type": "SoftwareApplication",
"identifier": "rlang",
"name": "rlang",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=rlang"
},
"9": {
"@type": "SoftwareApplication",
"identifier": "rstac",
"name": "rstac",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=rstac"
},
"10": {
"@type": "SoftwareApplication",
"identifier": "sf",
"name": "sf",
"version": ">= 0.9.0",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=sf"
},
"11": {
"@type": "SoftwareApplication",
"identifier": "sfheaders",
"name": "sfheaders",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=sfheaders"
},
"12": {
"@type": "SoftwareApplication",
"identifier": "sfnetworks",
"name": "sfnetworks",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=sfnetworks"
},
"13": {
"@type": "SoftwareApplication",
"identifier": "stringr",
"name": "stringr",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=stringr"
},
"14": {
"@type": "SoftwareApplication",
"identifier": "terra",
"name": "terra",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=terra"
},
"15": {
"@type": "SoftwareApplication",
"identifier": "tidygraph",
"name": "tidygraph",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=tidygraph"
},
"16": {
"@type": "SoftwareApplication",
"identifier": "units",
"name": "units",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=units"
},
"17": {
"@type": "SoftwareApplication",
"identifier": "visor",
"name": "visor",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=visor"
},
"SystemRequirements": null
},
"fileSize": "3801.685KB",
"releaseNotes": "https://github.com/CityRiverSpaces/rcrisp/blob/master/NEWS.md",
"readme": "https://github.com/CityRiverSpaces/rcrisp/blob/main/README.md",
"contIntegration": "https://github.com/CityRiverSpaces/rcrisp/actions/workflows/R-CMD-check.yaml",
"developmentStatus": [
"https://www.repostatus.org/#active",
"https://lifecycle.r-lib.org/articles/stages.html#stable"
],
"review": {
"@type": "Review",
"url": "https://github.com/ropensci/software-review/issues/718",
"provider": "https://ropensci.org"
}
}
GitHub Events
Total
- Create event: 51
- Release event: 1
- Issues event: 57
- Watch event: 1
- Delete event: 52
- Issue comment event: 97
- Push event: 260
- Pull request review comment event: 84
- Pull request review event: 150
- Pull request event: 90
Last Year
- Create event: 51
- Release event: 1
- Issues event: 57
- Watch event: 1
- Delete event: 52
- Issue comment event: 97
- Push event: 260
- Pull request review comment event: 84
- Pull request review event: 150
- Pull request event: 90
Committers
Last synced: 7 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Claudiu Forgaci | c****i@g****m | 799 |
| Francesco Nattino | f****o@e****l | 309 |
| SarahAlidoost | f****t@e****l | 58 |
| Meiert Willem Grootes | 4****s | 33 |
| Meiert Grootes | m****s@M****l | 9 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 41
- Total pull requests: 54
- Average time to close issues: about 2 months
- Average time to close pull requests: 3 days
- Total issue authors: 1
- Total pull request authors: 2
- Average comments per issue: 0.68
- Average comments per pull request: 0.39
- Merged pull requests: 29
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 41
- Pull requests: 54
- Average time to close issues: about 2 months
- Average time to close pull requests: 3 days
- Issue authors: 1
- Pull request authors: 2
- Average comments per issue: 0.68
- Average comments per pull request: 0.39
- Merged pull requests: 29
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- cforgaci (41)
Pull Request Authors
- cforgaci (44)
- fnattino (10)
Top Labels
Issue Labels
testing (12)
documentation (6)
invalid (5)
enhancement (4)
good first issue (4)
rOpenSci review (2)
data (2)
use case (2)
release (1)
dissemination (1)
Pull Request Labels
rOpenSci review (19)
documentation (4)
testing (1)
Packages
- Total packages: 1
-
Total downloads:
- cran 284 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 3
- Total maintainers: 1
cran.r-project.org: rcrisp
Automate the Delineation of Urban River Spaces
- Homepage: https://cityriverspaces.github.io/rcrisp/
- Documentation: http://cran.r-project.org/web/packages/rcrisp/rcrisp.pdf
- License: Apache License (≥ 2)
-
Latest release: 0.2.0
published 6 months ago
Rankings
Dependent packages count: 26.1%
Dependent repos count: 32.2%
Average: 48.2%
Downloads: 86.4%
Maintainers (1)
Last synced:
6 months ago