Skip to content

Commit

Permalink
setup covr
Browse files Browse the repository at this point in the history
  • Loading branch information
paleolimbot committed Dec 30, 2023
1 parent be35565 commit a30de99
Show file tree
Hide file tree
Showing 5 changed files with 97 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@
^vendor-geoarrow\.sh$
^\.clang-format$
^\.github$
^codecov\.yml$
^README\.Rmd$
^\.covrignore$
5 changes: 5 additions & 0 deletions .covrignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
src/geoarrow.c
src/geoarrow.h
src/fast_float.h
src/d2s.c
src/ryu
39 changes: 39 additions & 0 deletions README.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
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%"
)
```

# geoarrow

<!-- badges: start -->
[![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)
<!-- badges: end -->

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.

## Installation

You can install the development version of geoarrow from [GitHub](https://github.com/) with:

``` r
# install.packages("pak")
pak::pak("geoarrow/geoarrow-r")
```

## Example

This is a basic example which shows you how to solve a common problem:

```{r example}
library(geoarrow)
```
36 changes: 36 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@

<!-- README.md is generated from README.Rmd. Please edit that file -->

# geoarrow

<!-- badges: start -->

[![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)
<!-- badges: end -->

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.

## Installation

You can install the development version of geoarrow from
[GitHub](https://github.com/) with:

``` r
# install.packages("pak")
pak::pak("geoarrow/geoarrow-r")
```

## Example

This is a basic example which shows you how to solve a common problem:

``` r
library(geoarrow)
```
14 changes: 14 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
comment: false

coverage:
status:
project:
default:
target: auto
threshold: 1%
informational: true
patch:
default:
target: auto
threshold: 1%
informational: true

0 comments on commit a30de99

Please sign in to comment.