Learn R Programming

opencage (version 0.1.4)

opencage_forward: Forward geocoding

Description

Forward geocoding, from placename to latitude and longitude tuplet(s).

Usage

opencage_forward(placename, key = opencage_key(), bounds = NULL,
  countrycode = NULL, language = NULL, limit = 10,
  min_confidence = NULL, no_annotations = FALSE, no_dedupe = FALSE,
  no_record = FALSE, abbrv = FALSE, add_request = TRUE)

Arguments

placename

Placename.

key

Your OpenCage key.

bounds

Provides the geocoder with a hint to the region that the query resides in. This value will restrict the possible results to the supplied region. The bounds parameter should be specified as 4 coordinate points forming the south-west and north-east corners of a bounding box. For example, bounds = c(-0.563160, 51.280430, 0.278970, 51.683979) (min long, min lat, max long, max lat).

countrycode

Restricts the results to the given country. The country code is a two letter code as defined by the ISO 3166-1 Alpha 2 standard. E.g. "GB" for the United Kingdom, "FR" for France, "US" for United States.

language

An IETF format language code (such as "es" for Spanish or "pt-BR" for Brazilian Portuguese). If no language is explicitly specified, we will look for an HTTP Accept-Language header like those sent by a browser and use the first language specified and if none are specified "en" (English) will be assumed.

limit

How many results should be returned (1-100). Default is 10.

min_confidence

An integer from 1-10. Only results with at least this confidence will be returned.

no_annotations

Logical (default FALSE), when TRUE the output will not contain annotations.

no_dedupe

Logical (default FALSE), when TRUE the output will not be deduplicated.

no_record

Logical (default FALSE), when TRUE no log entry of the query is created at OpenCage.

abbrv

Logical (default FALSE), when TRUE addresses are abbreviated (e.g. C. instead of Calle)

add_request

Logical (default TRUE), when FALSE the query text is removed from the results data frame.

Value

A list with

  • results as a data.frame (`dplyr` `tbl_df`) called results with one line per results,

  • the number of results as an integer,

  • the timestamp as a POSIXct object,

  • rate_info data.frame (`dplyr` `tbl_df`) with the maximal number of API calls per day for the used key, the number of remaining calls for the day and the time at which the number of remaining calls with be reset.

Details

To get an API key to access OpenCage geocoding, register at https://geocoder.opencagedata.com/pricing. The free API key provides up to 2,500 calls a day. For ease of use, save your API key as an environment variable as described at https://stat545-ubc.github.io/bit003_api-key-env-var.html. Both functions of the package will conveniently look for your API key using Sys.getenv("OPENCAGE_KEY") so if your API key is an environment variable called "OPENCAGE_KEY" you don't need to input it manually.

The underlying data at OpenCage is updated about once a day. Note that the package uses `memoise` with no timeout argument so that results are cached inside an active R session.

This function typically returns multiple results because of placename ambiguity; consider using the bounds parameter to limit the area searched.

Examples

Run this code
# NOT RUN {
opencage_forward(placename = "Sarzeau")
opencage_forward(placename = "Islington, London")
opencage_forward(placename = "Triererstr 15,
                              Weimar 99423,
                              Deutschland")
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab