Description Usage Arguments Details Value Examples
Read Open Street Map data. OSM tiles are read and returned as a spatial raster. Vectorized OSM data is not supported anymore (see details).
1 2 3 4 5 6 7 8 9 |
x |
object that can be coerced to a bounding box with |
zoom |
passed on to |
type |
tile provider, by default |
minNumTiles |
passed on to |
mergeTiles |
passed on to |
use.colortable |
should the colors of the returned raster object be stored in a |
... |
arguments passed on to |
As of version 2.0, read_osm
cannot be used to read vectorized OSM data anymore. The reason is that the package that was used under the hood, osmar
, has some limitations and is not actively maintained anymore. Therefore, we recommend the package osmdata
. Since this package is very user-friendly, there was no reason to use read_osm
as a wrapper for reading vectorized OSM data.
The output of read_osm
is a raster
object.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | ## Not run:
if (require(tmap)) {
#### Choropleth with OSM background
# load Netherlands shape
data(NLD_muni)
# read OSM raster data
osm_NLD <- read_osm(NLD_muni, ext=1.1)
# plot with regular tmap functions
tm_shape(osm_NLD) +
tm_rgb() +
tm_shape(NLD_muni) +
tm_polygons("population", convert2density=TRUE, style="kmeans", alpha=.7, palette="Purples")
#### A close look at the building of Statistics Netherlands in Heerlen
# create a bounding box around the CBS (Statistics Netherlands) building
CBS_bb <- bb("CBS Weg 11, Heerlen", width=.003, height=.002)
# read Microsoft Bing satellite and OpenCycleMap OSM layers
CBS_osm1 <- read_osm(CBS_bb, type="bing")
CBS_osm2 <- read_osm(CBS_bb, type="opencyclemap")
# plot OSM raster data
qtm(CBS_osm1)
qtm(CBS_osm2)
}
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.