View source: R/GBIFLoginManager.R
GBIFLoginManager | R Documentation |
Takes users GBIF login particulars and turns it
into a GBIFLogin
for use in downloading data from
GBIF. You MUST ALREADY HAVE AN ACCOUNT at GBIF.
GBIFLoginManager(user = NULL, email = NULL, pwd = NULL)
user |
A vector of type character specifying a GBIF username. |
email |
A vector of type character specifying the email associated with a GBIF username. |
pwd |
A vector of type character containing the user's password for logging in to GBIF. |
An object of class GBIFLogin
containing the user's
GBIF login data.
## Inputting user particulars
## Not run:
myLogin <- GBIFLoginManager(
user = "theWoman",
email = "ireneAdler@laScala.org",
pwd = "sh3r"
)
## End(Not run)
## Not run:
## Can also be mined from your system environment
myLogin <- GBIFLoginManager(
user = NULL,
email = NULL, pwd = NULL
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.