Displaying 1 result from an estimated 1 matches for "sitelon".
2012 Mar 16
1
ggmap crash
...://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 <- read.csv('http://analysis.d8u.us/~hdiwan/rmc.csv', header=TRUE)
> siteLat = c(as.numeric(rmc$latitude))
> siteLon = c(as.numeric(rmc$longitude))
> sites <- as.data.frame(cbind(siteLat, siteLon, ''))
> lats <- c(floor(min(siteLat))-10, ceiling(max(siteLat))+10)
> lons <- c(floor(min(siteLon))-10, ceiling(max(siteLon))+10)
> map <- GetMap.bbox(c(min(siteLon)-5, max(siteLon)+5), c(...