getGenscapeStorageOil {RTL} | R Documentation |
Genscape API call for oil storage
Description
Returns oil storage data from Genscape API.You need your own credentials. Refer to API documentation for argument values. https://developer.genscape.com/docs/services/oil-storage/operations/StorageVolumeByOwnerGet
Usage
getGenscapeStorageOil(
feed = "owner-volumes",
regions = "Canada",
products = "Crude",
revision = "revised",
limit = 5000,
offset = 0,
startDate = "2011-01-01",
endDate = as.character(Sys.Date()),
apikey = "yourapikey"
)
Arguments
feed |
"owner-volumes" DEFAULT or "tank-volumes". |
regions |
See API webpage. Multiple values separated by commas e.g. "Canada, Cushing"). |
products |
See API webpage. Multiple values separated by commas e.g. "Crude, JetFuel"). |
revision |
See API webpage. |
limit |
See API webpage. Max 5000. |
offset |
See API webpage. |
startDate |
"yyyy-mm-dd". |
endDate |
"yyyy-mm-dd". |
apikey |
Your API key as a character string. |
Value
wide data frame tibble
Author(s)
Philippe Cote
Examples
## Not run:
# where yourapikey = "yourapikey".
getGenscapeStorageOil(
feed = "owner-volumes", regions = "Canada", products = "Crude",
revision = "revised", limit = 5000, offset = 0,
startDate = "2011-01-01", endDate = "2020-11-01", apikey = yourapikey
)
## End(Not run)
[Package RTL version 1.3.5 Index]