README.md

odyssey

R-CMD-check codecov

r-universe

Project Status: WIP – Initial development is in progress, but there
has not yet been a stable, usable release suitable for the
public.

Access data and download documents from the Open Archive HAL. This package provides a programmatic access to the HAL API.

Installation

You can install the development version from GitHub with:

# install.packages("remotes")
remotes::install_github("nfrerebeau/odyssey")

Usage

The use of odyssey involves three steps. First, a standard query is created using hal_api(). Then, a set of functions allows to customize this query (see below). Finally, hal_search() and hal_download() allow to collect data and to download documents.

The following functions allow you to customize a query. They must be applied to the object returned by hal_api() and can be called in any order. hal_filter can be used several times to add multiple search filters. See the HAL search API documentation for a list of available fields.

## Load packages
library(odyssey)
library(magrittr) # pipes

Get the 10 most recent documents about archaeology of Celts in France:

## Topic selection
## Will be combined with AND
topic <- list("archéologie", "Celtes", "France")

## Search publications
hal_api() %>%
  hal_query(topic) %>%
  hal_select("title_s", "producedDate_tdate") %>%
  hal_filter("notice" %IN% "submitType_s") %>% 
  hal_sort("producedDate_tdate", decreasing = TRUE) %>%
  hal_search(limit = 10)
#> 10 documents out of a maximum of 55 were returned.
#> # A tibble: 10 × 2
#>    title_s                                                      producedDate_td…
#>    <chr>                                                        <chr>           
#>  1 Du contenu et de l’apparence                                 2021-01-01T00:0…
#>  2 L'or des Gaulois                                             2019-09-01T00:0…
#>  3 Les établissements de hauteur fortifiés en France (XXII<sup… 2019-05-29T00:0…
#>  4 Une autre ‘note auxerroise’. La statuette étrusque d’Appoig… 2019-01-01T00:0…
#>  5 Archaeological continuum around the sanctuary of Mars Mullo  2018-06-04T00:0…
#>  6 Vaisselle de tous les jours et vaisselle de banquet : produ… 2018-01-01T00:0…
#>  7 Études géoarchéologiques et archéobotaniques du comblement … 2017-03-23T00:0…
#>  8 Production et proto-industrialisation aux Âges du fer : per… 2017-01-01T00:0…
#>  9 De l’Égée à la Gaule, aux sources de la monnaie d’or celte … 2017-01-01T00:0…
#> 10 Comparison between thermal airborne remote sensing, multi-d… 2016-01-01T00:0…

Get the most recent archaeological publication (in French) by journal:

hal_api() %>%
  hal_query("archéologie") %>%
  hal_select("producedDate_tdate") %>%
  hal_filter("ART" %IN% "docType_s") %>%
  hal_sort("producedDate_tdate", decreasing = TRUE) %>%
  hal_group(
    field = "journalTitle_s",
    sort = "producedDate_tdate", 
    decreasing = TRUE
  ) %>%
  hal_search(limit = 10)
#> 
#>                                     groupValue numFound start
#> 1                                  Vita Latina        5     0
#> 2                  Revue d'histoire des textes        3     0
#> 3  Archaeological and Anthropological Sciences       20     0
#> 4   Journal of Archaeological Science: Reports       93     0
#> 5                        Earth-Science Reviews        2     0
#> 6                         Bulletin de l'AMARAI       29     0
#> 7   Revue Archéologique du Centre de la France       56     0
#> 8                                Data in Brief        3     0
#> 9            Journal of Archaeological Science       86     0
#> 10             Archaeological Research in Asia        2     0
#>      producedDate_tdate
#> 1  2023-01-01T00:00:00Z
#> 2  2023-01-01T00:00:00Z
#> 3  2022-04-01T00:00:00Z
#> 4  2022-04-01T00:00:00Z
#> 5  2022-04-01T00:00:00Z
#> 6  2022-03-14T00:00:00Z
#> 7  2022-03-08T00:00:00Z
#> 8  2022-03-03T00:00:00Z
#> 9  2022-03-01T00:00:00Z
#> 10 2022-03-01T00:00:00Z

Code of Conduct

Please note that the odyssey project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.



nfrerebeau/odyssey documentation built on March 30, 2022, 2:51 p.m.