https://github.com/USEPA/FrEDI
FrEDI estimates annual physical and economic impacts from climate change to the U.S., through the 21st century
https://github.com/USEPA/FrEDI
oar
Last synced: 5 months ago
JSON representation
FrEDI estimates annual physical and economic impacts from climate change to the U.S., through the 21st century
- Host: GitHub
- URL: https://github.com/USEPA/FrEDI
- Owner: USEPA
- License: other
- Created: 2021-09-13T13:28:14.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-24T22:26:45.000Z (6 months ago)
- Last Synced: 2024-10-29T19:53:48.354Z (6 months ago)
- Topics: oar
- Language: HTML
- Homepage: https://usepa.github.io/FrEDI
- Size: 3.19 GB
- Stars: 11
- Watchers: 5
- Forks: 5
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: docs/CODE_OF_CONDUCT.html
Awesome Lists containing this project
- open-sustainable-technology - FrEDI - Estimates economic damages and impacts from climate change and sea level rise through the 21st century. (Climate Change / Natural Hazard and Storm)
README
# FrEDI
The Framework for Evaluating Damages and Impacts (FrEDI)FrEDI estimates the annual physical and economic impacts of future climate change to the US, through the 21st century (and optionally through 2300).
***
The 2024 FrEDI Technical Documentation and v4.1 of the FrEDI R package were subject to an independent external peer review and public comment period. All comments received were carefully reviewed, considered, and responded to. The final versions of the 2024 Technical Documentation and v4.1 R package were published in August 2024.
***## Installation
To install FrEDI for the first time:
`library("devtools")`
```
withr::with_libpaths(
new = .libPaths()[1],
devtools::install_github(
repo = "USEPA/FrEDI",
subdir = "FrEDI",
type = "source",
force = TRUE
#ref = "branch" # this will install a particular branch of interest
))
````library("FrEDI")`
## Using FrEDI
After loading FrEDI, point FrEDI to a particular temperature file of
interest formatted year, temp_c:
`tempInputFile <- file.path("your_file.csv")`.
You also can add in files for U.S. GDP and population.Here we specify that the temperature inputs are global. This will
allow FrEDI to convert those temperatures to CONUS level:
`inputs <- import_inputs(tempfile = tempInputFile, temptype = "global")`A simple command to run FrEDI using the inputs specified above :
`df <- run_fredi(inputsList= inputs, aggLevels="all")`
There are different levels to aggregate the data. By selecting "none",
FrEDI will print out all of the information and the user can then aggregate after.## Contributing to FrEDI
The FrEDI team welcomes and values community contributions, but please
see our [Contribution Guide](FrEDI/vignettes/articles/contributing.Rmd) and note
by contributing to this project, you agree to abide to our [Contributor
Code of Conduct](FrEDI/CODE_OF_CONDUCT.md)----------------------------------------------------------------------------------
For more information, refer to the documentation at https://www.epa.gov/cira/about-fredi and https://usepa.github.io/FrEDI.