Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pik-piam/edgeTransport
A detailed transport sector model.
https://github.com/pik-piam/edgeTransport
Last synced: 3 months ago
JSON representation
A detailed transport sector model.
- Host: GitHub
- URL: https://github.com/pik-piam/edgeTransport
- Owner: pik-piam
- Created: 2020-09-25T09:11:48.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-07-22T13:01:04.000Z (4 months ago)
- Last Synced: 2024-08-08T01:51:17.580Z (3 months ago)
- Language: R
- Size: 33.4 MB
- Stars: 5
- Watchers: 3
- Forks: 13
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- Citation: CITATION.cff
Awesome Lists containing this project
- open-sustainable-technology - edgeTransport - Prepare EDGE Transport Data for the REMIND model. (Climate Change / Integrated Assessment and Climate Policy)
README
# Prepare EDGE Transport Data for the REMIND model
R package **edgeTransport**, version **2.0.1**
[![CRAN status](https://www.r-pkg.org/badges/version/edgeTransport)](https://cran.r-project.org/package=edgeTransport) [![R build status](https://github.com/pik-piam/edgeTransport/workflows/check/badge.svg)](https://github.com/pik-piam/edgeTransport/actions) [![codecov](https://codecov.io/gh/pik-piam/edgeTransport/branch/master/graph/badge.svg)](https://app.codecov.io/gh/pik-piam/edgeTransport) [![r-universe](https://pik-piam.r-universe.dev/badges/edgeTransport)](https://pik-piam.r-universe.dev/builds)
## Purpose and Functionality
EDGE-T is a fork of the GCAM transport module https://jgcri.github.io/gcam-doc/energy.html#transportation with a high level of detail in its representation of technological and modal options. It is a partial equilibrium model with a nested multinomial logit structure and relies on the modified logit formulation. Most of the sources are not publicly available. PIK-internal users can find the sources in the distributed file system in the folder `/p/projects/rd3mod/inputdata/sources/EDGE-Transport-Standalone`.
## Installation
For installation of the most recent package version an additional repository has to be added in R:
```r
options(repos = c(CRAN = "@CRAN@", pik = "https://rse.pik-potsdam.de/r/packages"))
```
The additional repository can be made available permanently by adding the line above to a file called `.Rprofile` stored in the home folder of your system (`Sys.glob("~")` in R returns the home directory).After that the most recent version of the package can be installed using `install.packages`:
```r
install.packages("edgeTransport")
```Package updates can be installed using `update.packages` (make sure that the additional repository has been added before running that command):
```r
update.packages()
```## Tutorial
The package comes with a vignette describing the basic functionality of the package and how to use it. You can load it with the following command (the package needs to be installed):
```r
vignette("EDGEtransport") # EnergyDemandGenerator-Transport Model (EDGE-T)
```## Questions / Problems
In case of questions / problems please contact Johanna Hoppe .
## Citation
To cite package **edgeTransport** in publications use:
Hoppe J, Dirnaichner A, Rottoli M, Muessel J (2024). _edgeTransport: Prepare EDGE Transport Data for the REMIND model_. R package version 2.0.1, .
A BibTeX entry for LaTeX users is
```latex
@Manual{,
title = {edgeTransport: Prepare EDGE Transport Data for the REMIND model},
author = {Johanna Hoppe and Alois Dirnaichner and Marianna Rottoli and Jarusch Muessel},
year = {2024},
note = {R package version 2.0.1},
url = {https://github.com/pik-piam/edgeTransport},
}
```