search for: ggmap

Displaying 20 results from an estimated 49 matches for "ggmap".

Did you mean: pgmap
2014 Jan 28
2
Duda con get_map de ggmap
...;> >> Tengo dificultad de entender que quiere decir la función get_map con la >> frase "it is a wrapper for get_googlemap" , que esta en la documentación >> de >> la función >> >> El texto completo aqui: >> http://www.inside-r.org/packages/cran/ggmap/docs/get_map >> >> get_map {ggmap} >> >> *Grab a map.* >> *Package: ggmap* >> *Version: 2.3* >> >> Description >> >> get_map is a smart function which queries the Google Maps, OpenStreetMap, >> or Stamen Maps server for a map at a...
2014 Jan 28
2
Duda con get_map de ggmap
Hola estimada comunidad, Tengo dificultad de entender que quiere decir la función get_map con la frase "it is a wrapper for get_googlemap" , que esta en la documentación de la función El texto completo aqui: http://www.inside-r.org/packages/cran/ggmap/docs/get_map get_map {ggmap} *Grab a map.* *Package: ggmap* *Version: 2.3* Description get_map is a smart function which queries the Google Maps, OpenStreetMap, or Stamen Maps server for a map at a certain location at a certain spatial zoom. it is a wrapper for get_googlemap, get_openstreetmap...
2014 Jan 28
2
Duda con get_map de ggmap
Marta, Seguramente, al desconocer tu objetivo, no te servirá de mucho lo que te diga. No se si quieres escribir un paquete para mapas o simplemente hacer un mapa con la librería ggmap sin preocuparte de la magia interna. Si lo que necesitas es lo segundo puede que te sirva el siguiente ejemplo: http://journal.r-project.org/archive/2013-1/kahle-wickham.pdf http://www.wekaleamstudios.co.uk/posts/google-maps-and-ggmap/ Con la función que obtienes el mapa es ggmap, esa función co...
2012 Oct 03
4
Regarding licensing Terms
Hi, I have developed one application using ggmap package.It is based on google map. I am a bit confused regarding its licensing terms.I want to know that can i use it with my other applications. Is it legal? -- With Regards, Narendra Pratap Principal Research Developer Hitech Robotic Systemz Ltd. [[alternative HTML version deleted]]
2017 Sep 13
0
ggmap + geom_raster
Dear all, I want to : 1. Estimate a weighted 2D kernel. 2. Paint a heatmap on a ggmap. Here is some reproducible data / code (I got it from the internet) : s_rit <- structure(list(score = c(45, 60, 38, 98, 98, 53, 90, 42, 96, 45, 89, 18, 66, 2, 45, 98, 6, 83, 63, 86, 63, 81, 70, 8, 78, 15, 7, 86, 15, 63, 55, 13, 83, 76, 78, 70, 64, 88, 61, 78, 4, 7, 1, 70, 88, 58, 70, 58, 11, 4...
2014 Jan 30
2
objecto ggplot
...b/master/2013-06-street-level-crime/analysis.R Para luego hacer mi trabajo, algo similar a esto, pero adaptado a mi región. Si te fijas en las lineas 141-161, esta esto: ## Convert the base map into a ggplot object ## All added Cartesian coordinates to enable more geom options later on map.ggmap <- ggmap(map.base, extend = "panel") + coord_cartesian() ## Display a message cat("Creating a ggplot object ...\n") ## Various display settings for the ggplot object main.plot <- map.ggmap + ## Create a density plot ## based on the ggmap's crime dat...
2012 Mar 05
0
ggmap : ggplot2 and RgoogleMaps
Dear useRs - ggmap v1.2 is now available on CRAN. ggmap is a relatively new package which combines the power of ggplot2 with the spatial contextual information in Google Maps or OpenStreetMaps (via RgoogleMaps) to provide an easy, consistent and modular framework for spatial graphics. For examples on how to get s...
2023 Oct 13
1
rnrfa package problems
...it doesn?t work? Then this bounding box code works but doesn?t seem to capture any stations although rubric says that it should capture stations in mid Wales - the tibble is empty # Define a bounding box. bbox <- list(lonMin = -3.76, latMin = 52.43, lonMax = -3.67, latMax = 52.48) The ggmap code following gives an error ? this may be because the bbox data is empty but I?m not sure The needed packages are loaded: library(ggmap) library(ggrepel) m <- get_map(location = as.numeric(bbox), maptype = 'terrain') ggmap(m) + geom_point(data = someStations, aes(x = lon, y = lat)...
2012 Dec 07
0
Problem with ggmap
...ts v5 = c(551, 426, 500); # Colors for added points testData <- data.frame(lat = v1,lon = v2, big=v3, op=v4, col=v5) # Group variables together mapImageData4 <- get_googlemap(c(lon=-79.1, lat= 43.88),zoom=8,maptype="terrain"); # Get map image data pic4 <- ggmap(mapImageData4) + geom_point(aes(x=lon,y=lat), data=testData, colour = v5, size=v3, alpha = v4) The following `from` values were not present in `x`: col, color, pch, cex, lty, lwd, srt, adj, bg, fg, min, max Thanks, Axel. [[alternative HTML version deleted]]
2012 Mar 16
1
ggmap crash
Not sure if this is the right place to report this, but: Am using ggmap to generate a map of a bounding box from 161 latitude/longitude pairs and the code crashes R (in ess). Data is at http://analysis.d8u.us/~hdiwan/plotSource.csv and the code to read it is below. I'm not sure if ess, emacs, ggmap, R, or my laptop is to blame. Here's the code: > rmc <- r...
2015 Oct 20
3
Mapa de Calor con Google Maps de fondo
...$xyz.est ##Obtenemos la capa con los colores a partir de la aproximación de superficies image.plot(superf, bg= NULL, nlevel = param$NIVELES) [cid:image001.png en 01D10B5D.6039CD80] Por otro lado obtengo el mapa de google maps sobre el cual deberia ir esto asi: #Cargamos paquete library(ggmap) ##Centro del mapa center <- c(mean(datos$x), mean(datos$y)) ##Zoom zoom <- min(MaxZoom(range(datos$x), range(datos$x))) ##Obtenenmos mapa base mapa <- get_map(center, zoom = 12) [cid:image002.png en 01D10B5D.6039CD80] Lo que ya no consigo hacer es poner la imagen con los col...
2014 Jan 30
2
objecto ggplot
Para este ejemplo especifico: Deseo saber si tmp genera un objecto ggplot > tmp <- ggplot(mtcars, aes(x = hp, y=mpg)) + geom_point() El objecto o variable tmp, devuelve una lista y un gráfico, la clase dice ser ggplot, >class(tmp) [1] "gg" "ggplot" > typeof(tmp) [1] "list" El 30 de enero de 2014, 13:00, daniel
2010 Jun 23
1
Plotting Data on a Map
...data for ggplot2 >>>>> library(ggplot2) >>>>> # On some setups, fortify throws "Error in nchar(ID)" >>>>> # in that case, use setlocale >>>>> # Sys.setlocale("LC_ALL", locale = "C") >>>>> world.ggmap <- fortify(world.map, region = "NAME") >>>>> >>>>> >>>>> >>>>> >>>>> # Load the electricity generation data and clean it up to match with world.ggmape >>>>> elect.gen.tot <- read.csv("Tota...
2019 May 15
2
Identificar por coordenadas geográficas una calle de una ciudad
...direcciones y devolvían la > posición. El número de consultas tenía restricciones y había que darse > de alta en la api de google: > https://developers.google.com/maps/documentation/geocoding/start?csw=1 > > Buscando ahora esas herramientas me encontré con la función geocode de > ggmap: > https://www.rdocumentation.org/packages/ggmap/versions/2.6.1/topics/geocode > https://www.jessesadler.com/post/geocoding-with-r > podrías comenzar por esta... > > Como a mi gustan bastante las herramientas de OpenStreetMap (para cargar > rutas en R, ...), > y para no depende...
2013 Oct 29
2
Hoy reunión del "Grupo de Usuarios de R de Madrid - martes 29-octubre"....
Deberías instalar también, como poco, ggmap. RStudio no suele venir nunca mal. No sé si hay wifi en el bar para instalar las últimas dependencias... Un saludo, Carlos J. Gil Bellosta http://www.datanalytics.com El día 29 de octubre de 2013 13:44, Miguel Fiandor Gutiérrez <mfiandor en gmail.com> escribió: > qué recomendáis llevar...
2019 May 15
2
Identificar por coordenadas geográficas una calle de una ciudad
Saludos estimados compañeros: ¿Alguno de ustedes sabe de alguna librería con la que geolocalizar una calle de una ciudad española?, aunque no cuenten nada más que aquellas a partir de un umbral de población. Muchas gracias. [[alternative HTML version deleted]]
2013 Oct 29
2
Hoy reunión del "Grupo de Usuarios de R de Madrid - martes 29-octubre"....
...esta versión de R y estos paquetes: > > > - Disponer de una versión reciente de R (preferiblemente 2.15.3 o mayor) > - Que la versión de R tenga ya instaladas las librerías: maps, sp, > maptools, rgdal, rgeos, mapproj, RgoogleMaps, plotGoogleMaps, googleVis, > ggplot, ggmap, RColorBrewer (y su dependencias). > > > Y en cuanto a la Wifi. Sí, el Bar dispone de Wifi. No creo que haya ningún > problema en que nos den la clave de acceso. Aunque por si acaso (problema > de congestión) es mejor llevar instaladas las últimas versiones. > > Saludos, > C...
2016 Jun 21
2
Problemas con tildes y otros caracteres en R y RStudio
...uno de los últimos ejercicios que ha publicado Carlos Gil Bellosta en su blog ( https://www.datanalytics.com/2016/06/20/6602-767-km-alrededor-de-espana-para-visitar-todas-sus-capitales-de-provincia/), me ocurre que al ejecutar el código library(rvest) library(caRtociudad) library(reshape2) library(ggmap) library(plyr) library(TSP) capitales <- read_html(" https://es.wikipedia.org/wiki/Anexo:Capitales_de_provincia_de_Espa%C3%B1a_por_poblaci%C3%B3n ") capitales <- html_nodes(capitales, "table") capitales <- html_table(capitales[[1]])$Ciudad obtengo esto: > capitale...
2016 Jun 21
2
Problemas con tildes y otros caracteres en R y RStudio
...> "encoding" declarado en la página, por lo que no debería haber > problemas en ninguna plataforma. De todos modos, tienes una opción en > rvest para indicar el juego de caracteres. Igual indicando "latin1" > funciona. > > También he visto problemas llamando a ggmap::geocode desde Windows > cuando la cadena contiene caracteres no ascii. Hay información aquí: > > https://github.com/dkahle/ggmap/issues/89 > > No sé si tratar de transformar la cadena de búsqueda a UTF8 con iconv > ayudará o no a resolver el problema. > > Un saludo, > &g...
2018 Feb 07
5
Ayuda OVER_QUERY_LIMIT
Buena tarde a todos, Estos realizando un proceso que requiere asignar coordenadas a un buen número de registros. Estoy usando el paquete ggmap, pero luego de hacer uso de la georeferenciación se genera el error "geocode failed with status OVER_QUERY_LIMIT" debido al límite de registros diarios. A pesar de decir el error que es cada día, ya me está generando error con pocos registros incluso sin completar los 2500 del día. En gen...