Learn R Programming

amapGeocode (version 0.6.0)

extractCoord: Extract coordinate from location request

Description

Extract coordinate from location request

Usage

extractCoord(res)

Arguments

res

Required. Response from getCoord.

Value

Returns a data.table which extracts detailed coordinate information from results of getCoord. See https://lbs.amap.com/api/webservice/guide/api/georegeo for more information.

See Also

getCoord

Examples

Run this code
# NOT RUN {
library(dplyr)
library(amapGeocode)

# Before the `getCoord()` is executed,
# the token should be set by `option(amap_key = 'key')`
# or set by key argument in `getCoord()`

# Get geocode as a XML
getCoord("IFS Chengdu", output = "XML") %>%
  # extract geocode regions as a data.table
  extractCoord()
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab