Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aariq/pecan.db
Just testing breaking off one of the PEcAn packages from https://github.com/PecanProject/pecan
https://github.com/aariq/pecan.db
Last synced: 25 days ago
JSON representation
Just testing breaking off one of the PEcAn packages from https://github.com/PecanProject/pecan
- Host: GitHub
- URL: https://github.com/aariq/pecan.db
- Owner: Aariq
- License: ncsa
- Created: 2023-10-25T13:42:26.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-25T13:46:51.000Z (about 1 year ago)
- Last Synced: 2024-06-11T16:34:11.318Z (5 months ago)
- Language: R
- Homepage: https://github.com/PecanProject/pecan
- Size: 365 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PEcAn.DB
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[![PEcAn.DB status badge](https://pecanproject.r-universe.dev/badges/PEcAn.DB)](https://pecanproject.r-universe.dev/PEcAn.DB)
[![R-CMD-check](https://github.com/Aariq/PEcAn.DB/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/Aariq/PEcAn.DB/actions/workflows/R-CMD-check.yaml)PEcAn Functions Used for Ecological Forecasts and Reanalysis
## Installation
You can install the development version of `PEcAn.DB` from r-universe like so:
``` r
# Enable repository from pecanproject
options(repos = c(
pecanproject = 'https://pecanproject.r-universe.dev',
CRAN = 'https://cloud.r-project.org'))
# Download and install PEcAn.DB in R
install.packages('PEcAn.DB')
```Or you can install directly from GitHub with the remotes package like so:
``` r
library(remotes)
install_github('pecanproject/pecan', subdir = "base/db")
```## Example
This is a basic example which shows you how to solve a common problem:
``` r
library(PEcAn.DB)
## basic example code
```