Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/JGCRI/helios
Heating and Cooling Degree processing for GCAM from various sources such as WRF and CMIP
https://github.com/JGCRI/helios
Last synced: 3 months ago
JSON representation
Heating and Cooling Degree processing for GCAM from various sources such as WRF and CMIP
- Host: GitHub
- URL: https://github.com/JGCRI/helios
- Owner: JGCRI
- License: other
- Created: 2021-11-17T17:41:30.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-27T20:22:42.000Z (8 months ago)
- Last Synced: 2024-06-11T19:32:16.706Z (5 months ago)
- Language: R
- Homepage: http://jgcri.github.io/helios/
- Size: 99 MB
- Stars: 3
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- open-sustainable-technology - helios - An R package to process heating and cooling degrees for the Global Change Analysis Model (GCAM) from various sources such as WRF and CMIP. (Climate Change / Earth and Climate Modeling)
README
[![build](https://github.com/JGCRI/helios/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/JGCRI/helios/actions/workflows/build.yml)
[![test_coverage](https://github.com/JGCRI/helios/actions/workflows/test_coverage.yml/badge.svg?branch=main)](https://github.com/JGCRI/helios/actions/workflows/test_coverage.yml)
[![docs](https://github.com/JGCRI/helios/actions/workflows/docs.yaml/badge.svg?branch=main)](https://github.com/JGCRI/helios/actions/workflows/docs.yaml)
[![codecov](https://codecov.io/gh/JGCRI/helios/branch/main/graph/badge.svg?token=XQ913U4IYM)](https://codecov.io/gh/JGCRI/helios)
[![Github All Releases](https://img.shields.io/github/downloads/JGCRI/helios/total.svg)]()
[![DOI](https://joss.theoj.org/papers/10.21105/joss.06033/status.svg)](https://doi.org/10.21105/joss.06033)
[![DOI](https://zenodo.org/badge/429143355.svg)](https://zenodo.org/doi/10.5281/zenodo.8170310)`helios` is an R package to process heating and cooling degrees for the Global Change Analysis Model (GCAM) from various sources such as WRF and CMIP.
Zhao, M., Khan, Z., Dorheim, K., Vernon, C., (2024). helios: An R package to process heating and cooling degrees for GCAM. Journal of Open Source Software, 9(94), 6033, https://doi.org/10.21105/joss.06033
1. Download and install:
- R (https://www.r-project.org/)
- R studio (https://www.rstudio.com/)
2. Open R studio:```r
install.packages("devtools")
devtools::install_github("JGCRI/helios")
```
or
```r
install.packages("remotes")
remotes::install_github("JGCRI/helios")
```Additional steps for UBUNTU from a terminal
```
sudo add-apt-repository ppa:ubuntugis/ppa
sudo apt-get update
sudo apt-get install libudunits2-dev libgdal-dev libgeos-dev libproj-dev libmagick++-dev
```Additional steps for MACOSX from a terminal
```
brew install pkg-config
brew install gdal
````helios` is an R package that calculates heating and cooling degrees using high temporal and spatial resolution of climate data and population data. `helios` currently supports WRF data and ISIMIP-CMIP data, or same format with any of them. For more details:
* [GCAM-Regions Tutorial](https://jgcri.github.io/helios/articles/vignette_gcam-regions.html) introduces how to use `helios` to calculate heating and cooling degree-days for 32 global regions in GCAM.
* [GCAM-USA Tutorial](https://jgcri.github.io/helios/articles/vignette_gcam-usa.html) introduces how to use `helios` to calculate heating and cooling degree-hours for CONUS in GCAM-USA.- Khan, Z., Iyer, G., Patel, P., Kim, S., Hejazi, M., Burleyson, C. and Wise, M., 2021. Impacts of long-term temperature change and variability on electricity investments. Nature communications, 12(1), pp.1-12.
Whether you find a typo in the documentation, find a bug, or want to develop functionality that you think will make `helios` more robust, you are welcome to contribute! The [contributing](https://github.com/JGCRI/helios/blob/main/CONTRIBUTING.md) page will walk you through processes to contribute to `helios`.