Skip to content

Commit a30de99

Browse files
committed
setup covr
1 parent be35565 commit a30de99

File tree

5 files changed

+97
-0
lines changed

5 files changed

+97
-0
lines changed

.Rbuildignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@
66
^vendor-geoarrow\.sh$
77
^\.clang-format$
88
^\.github$
9+
^codecov\.yml$
10+
^README\.Rmd$
11+
^\.covrignore$

.covrignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
src/geoarrow.c
2+
src/geoarrow.h
3+
src/fast_float.h
4+
src/d2s.c
5+
src/ryu

README.Rmd

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
output: github_document
3+
---
4+
5+
<!-- README.md is generated from README.Rmd. Please edit that file -->
6+
7+
```{r, include = FALSE}
8+
knitr::opts_chunk$set(
9+
collapse = TRUE,
10+
comment = "#>",
11+
fig.path = "man/figures/README-",
12+
out.width = "100%"
13+
)
14+
```
15+
16+
# geoarrow
17+
18+
<!-- badges: start -->
19+
[![Codecov test coverage](https://codecov.io/gh/geoarrow/geoarrow-r/branch/main/graph/badge.svg)](https://app.codecov.io/gh/geoarrow/geoarrow-r?branch=main)
20+
<!-- badges: end -->
21+
22+
The goal of geoarrow is to leverage the features of the [arrow](https://arrow.apache.org/docs/r/) package and larger [Apache Arrow](https://arrow.apache.org/) ecosystem for geospatial data. The geoarrow package provides an R implementation of the [GeoParquet](https://github.com/opengeospatial/geoparquet) file format of and the draft [geoarrow data specification](https://geoarrow.org), defining extension array types for vector geospatial data.
23+
24+
## Installation
25+
26+
You can install the development version of geoarrow from [GitHub](https://github.com/) with:
27+
28+
``` r
29+
# install.packages("pak")
30+
pak::pak("geoarrow/geoarrow-r")
31+
```
32+
33+
## Example
34+
35+
This is a basic example which shows you how to solve a common problem:
36+
37+
```{r example}
38+
library(geoarrow)
39+
```

README.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
2+
<!-- README.md is generated from README.Rmd. Please edit that file -->
3+
4+
# geoarrow
5+
6+
<!-- badges: start -->
7+
8+
[![Codecov test
9+
coverage](https://codecov.io/gh/geoarrow/geoarrow-r/branch/main/graph/badge.svg)](https://app.codecov.io/gh/geoarrow/geoarrow-r?branch=main)
10+
<!-- badges: end -->
11+
12+
The goal of geoarrow is to leverage the features of the
13+
[arrow](https://arrow.apache.org/docs/r/) package and larger [Apache
14+
Arrow](https://arrow.apache.org/) ecosystem for geospatial data. The
15+
geoarrow package provides an R implementation of the
16+
[GeoParquet](https://github.com/opengeospatial/geoparquet) file format
17+
of and the draft [geoarrow data specification](https://geoarrow.org),
18+
defining extension array types for vector geospatial data.
19+
20+
## Installation
21+
22+
You can install the development version of geoarrow from
23+
[GitHub](https://github.com/) with:
24+
25+
``` r
26+
# install.packages("pak")
27+
pak::pak("geoarrow/geoarrow-r")
28+
```
29+
30+
## Example
31+
32+
This is a basic example which shows you how to solve a common problem:
33+
34+
``` r
35+
library(geoarrow)
36+
```

codecov.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
comment: false
2+
3+
coverage:
4+
status:
5+
project:
6+
default:
7+
target: auto
8+
threshold: 1%
9+
informational: true
10+
patch:
11+
default:
12+
target: auto
13+
threshold: 1%
14+
informational: true

0 commit comments

Comments
 (0)