ggmap
ggmap copied to clipboard
A package for plotting maps in R with ggplot2
Hi, we're an agency that has the Google Maps API premium that requires a client ID and signature for *each* unique API request. Right now the register_google function assumes there...
All request that don't define `source = "dsk"` explicitly, fail with this warning: `geocode("houston texas")` > geocode failed with status OVER_QUERY_LIMIT Although there would still be remaining geocoding-calls available: >...
I found it a bit burdensome to get multiple markers on the map and wrote gen_markers function. https://github.com/daimoriwaki/gen_markers Though I'm not a genuine developer but an economic researcher so that...
Hi, I am getting issues with google maps not being produced in my Rstudio reports. This is the error code I get (I have removed the API code but it...
If I query a geocode using the output = "more" option, and some error occurs (e.g. OVER_QUERY LIMIT) the result will be a data.frame with only two columns ("lat" and...
Hey, I ran` devtools::install_github('dkahle/ggmap')` when trying to fix the issue of ggmap mapdist function repeating calculation for certain O-D pairs. before running this the code `mapdist('Manchester Deaf Institute', 'Birmingham O2...
Do you think it would improve development workflows to add continuous integration, mainly to run `R CMD CHECK`? It's just a few clicks for services like [travis](https://travis-ci.org/).
This ought to fix #207. ``` r library(ggmap) register_google(key = Sys.getenv("GOOGLE_GEOCODE_KEY")) ``` ## `urlonly` for multiple locations ``` r places V1 #> 1 https://maps.googleapis.com/maps/api/geocode/json?address=Houston%2C%20Texas&key=my_google_key #> 2 https://maps.googleapis.com/maps/api/geocode/json?address=Washington%2C%20DC&key=my_google_key ``` ## `force`...
Hi all: Big fan of the package, and ggplot2 in general. Has there been any talk of using other geocoding APIs, like the US census (http://www.census.gov/data/developers/data-sets/Geocoding-services.html), or local databases? Best...
Just a feature request, feel free to ignore. Would it be possible to add a progress bar to geocode()? When geocoding a lot of addresses it is easy to forget...