pgf_function_properties.Rd
Get information on function properties.
pgf_function_properties(
function_id,
base_url,
path,
nocache = NULL,
user = gh_user(),
verbose = FALSE,
response = FALSE
)
A character string of the function id.
A character string of the base URL.
A character string of the path or endpoint.
A character string indicating whether to cache results or not. Possible values include 'true' or 'false' or NULL.
A character string of the user. This allows whoever is running the server your are querying to contact you in case of misuse.
A flag indicating whether to provide verbose GET response.
A flag indicating whether to return the raw response object.
A tibble.
Other functions:
pgf_function_description()
,
pgf_function_parameters()
,
pgf_function_result()
,
pgf_functions()
if (FALSE) { # \dontrun{
function_id <- "fwa_locatealong"
base_url <- "https://features.hillcrestgeo.ca/"
path <- "fwa"
pgf_function_properties(
function_id = function_id, base_url = base_url, path = path
)
} # }