Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/njahn82/ropenaire
R client for OpenAIRE
https://github.com/njahn82/ropenaire
Last synced: 3 months ago
JSON representation
R client for OpenAIRE
- Host: GitHub
- URL: https://github.com/njahn82/ropenaire
- Owner: njahn82
- License: other
- Created: 2015-07-02T17:12:25.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-05-16T14:15:00.000Z (over 6 years ago)
- Last Synced: 2024-10-09T15:52:39.267Z (3 months ago)
- Language: R
- Size: 210 KB
- Stars: 6
- Watchers: 7
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
```{r echo=FALSE}
knitr::opts_chunk$set(
comment = "#>",
collapse = TRUE,
warning = FALSE,
message = FALSE
)
```# ropenaire
**Notice that ropenaire is currently improved for Open Knowledge Maps integration supported by [OpenAIRE](https://www.openaire.eu/). For the most current developement version, please follow this fork: **
[![Build Status](https://travis-ci.org/sckott/ropenaire.svg?branch=master)](https://travis-ci.org/sckott/ropenaire)
[![Build status](https://ci.appveyor.com/api/projects/status/github/sckott/ropenaire?branch=master)](https://ci.appveyor.com/project/sckott/ropenaire)
[![codecov.io](http://codecov.io/github/sckott/ropenaire/coverage.svg?branch=master)](http://codecov.io/github/sckott/ropenaire?branch=master)## About
**ropenaire** gives access to the [OpenAIRE RESTful API](http://api.openaire.eu/) with R. [OpenAIRE](https://www.openaire.eu/) is an open science initiative, which supports the Open Access policy of the European Commission. OpenAIRE aggregates over 12 mio publication and datasets from over 5,800 OA repositories and journals.
The API is intended for metadata discovery and exploration only. Note that the number of results returned by one query is limited to 10,000.
For bulk access, please use the [OpenAIRE OAI-PMH endpoint](http://api.openaire.eu/#cha_oai_pmh), which can be queried by [Scott's OAI-PMH client](https://github.com/sckott/oai) or [OAIHarvester](https://cran.r-project.org/web/packages/OAIHarvester/index.html).
## Installation from GitHub
Get the most recent developement version from Scott
```{r, eval=FALSE}
devtools::install_github("sckott/ropenaire")
```Load `ropenaire`
```{r}
library(ropenaire)
```## Usage
### Projects
Search for EC-funded projects by participating institution. For example, Göttingen University has the acronym `GOE`
```{r}
roa_projects(org = "UGOE", size = 10)
```Search projects by call id
```{r}
roa_projects(call_id = "FP7-PEOPLE-2013-IOF", size = 10)
```### Publications
Publications from the 2nd-Generation Open Access Infrastructure for Research in Europe project, which has the grant id 283595.
```{r}
roa_pubs(fp7 = "283595", size = 10)
```### Datasets
Search for FP7 grant-supported datasets
```{r}
roa_datasets(fp7 = "247153", size = 10)
```Search by title keywords
```{r}
roa_datasets(title = "methane", size = 10)
```### Get all the FP7-supported publications from a participating institution
```{r}
roa_projects(org = "UGOE", size = 10)
```## Meta
* Please [report any issues or bugs](https://github.com/njahn82/ropenaire/issues).
* License: MIT ©Najko Jahn[![okmaps_footer](tools/github-banner-okmaps-contribution.png)](https://openknowledgemaps.org/)