11 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
252
views
What issue is st_make_valid() fixing when applied to OSM data?
I have code in R that drew maps for me using osmdata. It was working fine for quite a while, and then suddenly stopped working despite nothing about the code changing. I assumed this meant that ...
0
votes
1
answer
186
views
osmdata_sf returns failed to perform HTTP request curl::curl_fetch_memory() error in R?
I am trying to query osm data in R using the following code:
library(osmdata)
bb <- getbb('North Goa, India')
q <- opq(bbox = bb, osm_types = c("node", "way", "lines&...
0
votes
0
answers
78
views
sf intersection with osmdata failing
I'm trying to extract data from osm to use in an anlysis, but I'm having trouble with sf::st_intersection. Reprex below,
# load libraries
library(osmdata)
# osmdata
co = opq_osm_id(type = "...
1
vote
1
answer
141
views
Get relation data from osmdata
Looking at OpenStreeMap underlying data I see that the data that I want is at the relation level and when I query the OSM using osmdata in R I cannot get this data.
https://www.openstreetmap.org/...
0
votes
2
answers
248
views
Why do I get neighboring states when mapping in R with osmdata?
I'm attemping to generate a map of the state of Louisiana and the parishes (i.e., counties) within it using osmdata and ggplot in R. This is where I'm at currently:
library(osmdata)
library(ggplot2)
...
1
vote
1
answer
89
views
Difficulty plotting boroughs in R
I'm trying to plot the boroughs of Montreal in R and show the name of each borough on the map. However, the following code doesn't seem to plot the map properly as it doesn't show all boroughs:
...
1
vote
0
answers
493
views
can't download packages in R
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
...
0
votes
1
answer
252
views
Impossible to plot OSM multipolygons in tmap and leaflet
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 ...
0
votes
1
answer
219
views
Umlaute not displayed correctly with osmdata
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 ...
0
votes
1
answer
299
views
Problem with plotting a polygon with ggplot + osmdata
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", ...
2
votes
1
answer
388
views
R osmdata: get other_tags as columns
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 ...