I want to extract google satellite images in r.
I actually manage to get my image using the coordinates but not with the bounding bx
first you need to get a google api key and register it then
GE <- get_map(location = c(long =36.8595894, lat=-0.7688972) ,
maptype = "satellite", zoom=18)
ggmap(GE)
This works
then i want to make a bounding box
box<-make_bbox(c(36.8594652,36.8597136),c(-0.7691144,-0.7686799 ) )
GE <- get_map(box ,
maptype = "satellite", source="google",
zoom=18)
This however does not return a satellite image, why?
it seems to return a ggmap but not from google and it is not viewable with ggmap(GE)