From here:http://cran.r-project.org/web/packages/ggmap/ggmap.pdf
ggmap
plots the raster object produced by get_map.
From here:http://cran.r-project.org/web/packages/ggmap/ggmap.pdf
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 forget_googlemap
From: http://qwt.sourceforge.net/class_qwt_raster_data.html
QwtRasterData
defines an interface to any type of raster data
So, following way the data resultant from get_googlemap
is saved in a rda
file.
mapImageData <- get_googlemap (c (lon=-74.0087986666667, lat=40.7106593333333), zoom=15)
save (mapImageData, file="savedMap.rda")
Question:
Is it logical for me to think that savedMap.rda
file here contains the raster data, therefore it can be displayed in QwtRasterData
widget of Qt
?