getCoordinate: Get coordiante from address

Description Usage Arguments Value Examples

Description

Take in address and return the coordinate

Usage

1
2
getCoordinate(address, city = NULL, output = "json", formatted = F,
  limit = 600)

Arguments

address

address

city

the city of the address, optional

output

should be 'json' or 'xml', the type of the result

formatted

logical value, return the coordinates or the original results

limit

integer value.If the length of address exceeded limit, function will run in parallel

Value

A vector contains the corresponding coordiante. If 'formatted=TRUE', return the numeric coordinates, otherwise return json or xml type result, depents on the argument 'output'. If the length of address is larger than 1, the result is a matrix.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
## Not run: 
## json output
getCoordinate('beijingdaxue')

## xml output
getCoordinate('beijingdaxue', output='xml')

## formatted
getCoordinate('beijingdaxue', formatted = T)

## vectorization, return a matrix
getCoordinate(c('beijingdaxue', 'qinghuadaxue'), formatted = T)

## End(Not run)

daigazi/bamapr documentation built on May 14, 2019, 3:28 p.m.