I would like to use osmdata and get the other_tags as explicit columns.
Example code:
library(osmextract)
library(osmdata)
itsleeds = oe_get("ITS Leeds")
oe_get_keys(itsleeds)
I am interested in extracting the other_tags col from itsleeds…
I've been trying to install some new packages on R, one of them being 'osmdata'. When I install it, I get this error:
Do you want to attempt to install these from sources? (Yes/no/cancel) no
installing the source package ‘reproj’
trying URL…
I'm extracting data from OpenStreetMap using osmdata, and from the query I get a set of points, lines, polygons, and multipolygons. Somehow, when trying to plot multipolygons, leaflet and tmap do not find them, while using plot(st_geometry(...))…
I am having troubles with the German Umlaute (ä, ü, ö) and other signs when using osmdata in R.
I can successfully get the data via query (notice the Ü in the bounding box in the first line, it is working…
I have a problem working with plotting a polygon obtained by osmdata.
First, I get the polygon of the object using this code
library(osmdata)
loespejo_mersal <- opq_osm_id (type = "way", id = 39259197)%>%
opq_string () %>%
osmdata_sf ()
And i got…