gd_initialize {rgeedim} | R Documentation |
Initialize geedim
Description
Calls geedim
Initialize()
method. This method should be called at the beginning of each session.
Usage
gd_initialize(
private_key_file = NULL,
credentials = "persistent",
cloud_api_key = NULL,
url = "https://earthengine-highvolume.googleapis.com",
opt_url = NULL,
http_transport = NULL,
project = NULL,
quiet = TRUE
)
gd_is_initialized(...)
Arguments
private_key_file |
character. Optional: Path to JSON file containing client information and private key. Alternately, the contents of a JSON file. Instead of setting this argument you may specify |
credentials |
Default: |
cloud_api_key |
An optional API key to use the Cloud API. Default: |
url |
The base url for the EarthEngine REST API to connect to. Defaults to "High Volume" endpoint: |
opt_url |
(deprecated) Use |
http_transport |
The HTTP transport method to use when making requests. Default: |
project |
The client project ID or number to use when making API calls. Default: |
quiet |
Suppress error messages on load? Default: |
... |
Additional arguments passed to |
Value
gd_initialize()
: try-error (invisibly) on error.
gd_is_initialized()
: logical. TRUE
if initialized successfully.
See Also
gd_authenticate()
Examples
## Not run:
gd_initialize()
## End(Not run)
gd_is_initialized()