downloadGDD: Fetch Article Metadata

Description Usage Arguments Details Value Author(s) Examples

View source: R/downloadGDD.R

Description

Downloads article bibjson metadata from /articles route of the GeoDeepDive API.

Usage

1
2
downloadGDD(Journal = "", Term = "", DocID = "", Surname = "",
  Given = "")

Arguments

Journal

a character vector

Term

a character vector

DocID

a character vector

Surname

a character vector; author's last name

Given

a character vector; author's first name

Details

This function allows you to download article metadata from the GeoDeepDive library. It allows you to choose article metadata based on one more parameters including the journal title, GeoDeepDive assigned document id, author first name, author last name, or term within the article. This data is pulled from the GeoDeepDive /articles API route

Note: There are other API parameter options that are not included in this simplified wrapper.

Value

A list of article metadata

Author(s)

Andrew A. Zaffos & Erika T. Ito

Examples

1
2
3
4
5
6
7
8
# Download metadata for articles from Journal of Vertebrate Paleontology
GDDMetadata<-downloadGDD(Journal="Journal of Vertebrate Paleontology")

# Download  metadata from Journal of Vertebrate Paleontology by Michael J. Benton
Surname<-"Benton"
Given<-"Michael"
Journal<-"Journal of Vertebrate Paleontology"
GDDMetadata<-downloadGDD(Journal,Surname,Given)

aazaff/geocarrot documentation built on May 5, 2019, 9:44 p.m.