-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
be35565
commit a30de99
Showing
5 changed files
with
97 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,6 @@ | |
^vendor-geoarrow\.sh$ | ||
^\.clang-format$ | ||
^\.github$ | ||
^codecov\.yml$ | ||
^README\.Rmd$ | ||
^\.covrignore$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |