-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathgeo_code.Rd
39 lines (35 loc) · 1.04 KB
/
geo_code.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/geo_code.R
\name{geo_code}
\alias{geo_code}
\title{Convert text strings into points on the map}
\usage{
geo_code(
address,
service = "nominatim",
base_url = "https://maps.google.com/maps/api/geocode/json",
return_all = FALSE,
pat = NULL
)
}
\arguments{
\item{address}{Text string representing the address you want to geocode}
\item{service}{Which service to use? Nominatim by default}
\item{base_url}{The base url to query}
\item{return_all}{Should the request return all information returned by Google Maps?
The default is \code{FALSE}: to return only two numbers: the longitude and latitude, in that order}
\item{pat}{Personal access token}
}
\description{
Generate a lat/long pair from data using Google's geolocation API.
}
\examples{
\dontrun{
geo_code(address = "Hereford")
geo_code("LS7 3HB")
geo_code("hereford", return_all = TRUE)
# needs api key in .Renviron
geo_code("hereford", service = "google", pat = Sys.getenv("GOOGLE"), return_all = TRUE)
}
}
\concept{nodes}