-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathREADME.Rmd
52 lines (35 loc) · 1.62 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
44
45
46
47
48
49
50
51
52
---
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%"
)
```
# tzdb
<!-- badges: start -->
[](https://github.com/r-lib/tzdb/actions/workflows/R-CMD-check.yaml)
[](https://app.codecov.io/gh/r-lib/tzdb)
<!-- badges: end -->
tzdb is a developer focused R package with two purposes:
- It ships an up-to-date copy of the IANA time zone database files.
- It provides low-level access to the C++ library, [date](https://github.com/HowardHinnant/date).
To use the C++ API supplied by tzdb:
- Add tzdb to both Imports and LinkingTo.
- Call `tzdb::tzdb_initialize()` from your `.onLoad()`.
- Access the date API through `#include <tzdb/*.h>` where `*` is replaced with the date header you want to use.
Note that while `tzdb/tz.h` declares many functions and types, most of their implementations are not present in the header file. This means that the functions in `tzdb/tz.h` are _not_ safe to call from your R package. Instead, the most critical helpers have been exposed in a safe way in `tzdb/tzdb.h`. Use these instead.
## Installation
You can install the released version of tzdb from [CRAN](https://CRAN.R-project.org) with:
``` r
install.packages("tzdb")
```
And the development version from [GitHub](https://github.com/) with:
``` r
# install.packages("pak")
pak::pak("r-lib/tzdb")
```