osmdata icon indicating copy to clipboard operation
osmdata copied to clipboard

R package for downloading OpenStreetMap data

Results 29 osmdata issues
Sort by recently updated
recently updated
newest added

We see ``` Error in data_articles_index(pkg) : Vignettes missing from index: query-split ``` To check everything is ok after editing the configuration file, run `pkgdown::check_pkgdown()`.

When I query osm data, I want to receive the timestamp, when some object was added or changed, is it possible to include this data? There is my query: ```...

Hi @mpadge! I want to report a possible regression in `opq_osm_id`. The following example (taken from `?opq_osm_id`) fails with the current CRAN version: ``` r remotes::install_cran("osmdata", quiet = TRUE) library(osmdata)...

Most of the tests could be run with no mocking at all, by just using an internal `.osm` file.

This PR addresses suggestion #256. Main changes are: 1. New function added `overpass_trim()` that modifies OP query to subset OSM features by area rather than currently default bbox. Function parses...

There might be possibly a bug in how `trim_osmdata()` filters the data. It seems to be removing some objects that should be in the final dataset. ``` r library(tidyverse) library(sf)...

Currently if query times out or runs out of memory the request is terminated. Given that the amount of data in OSM is growing it might be worth thinking about...

See #77 for related stuff

future stuff

Implementation of this is dependent on #255. Currently each query is run on all three types of objects `node`, `way` and `relation` written as three separate lines. There is only...