-
Notifications
You must be signed in to change notification settings - Fork 4
/
README.Rmd
44 lines (32 loc) · 1.29 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# harpCore <img src='man/figures/harp_logo_dark.svg' align="right" width = "80" />
*Core functions and methods for the harp ecosystem*
This package underlies everything in harp. It defines all of the classes,
generics and some methods used in the other harp packages, as well as some functions
that are needed in more than one of the harp packages. The most important classes
are:
* **geolist** - A list of 2d georeferenced fields.
* **harp_df** (and subclasses) - Data frames containing harp data.
* **harp_list** - A list of harp_df data frames.
Methods are defined for *most* [dplyr](https://dplyr.tidyverse.org/) verbs.
In addition, functions for handling date-times, geographic transformations of
gridded data, data frame manipulations specific to harp, meteorological
formulae and smoothing 2d fields are included.
This package is automatically attached by all other harp packages.
## Installation
You can install harpCore from [GitHub](https://github.com/) with:
``` r
# install.packages("remotes")
remotes::install_github("harphub/harpCore")
```