Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ropensci/osmdata

R package for downloading OpenStreetMap data
https://github.com/ropensci/osmdata

cpp openstreetmap osm osm-data overpass-api peer-reviewed r r-package rstats

Last synced: about 2 months ago
JSON representation

R package for downloading OpenStreetMap data

Awesome Lists containing this project

README

        

---
title: "osmdata, an R package for OpenStreetMap data"
keywords: "open street map, openstreetmap, overpass API, OSM"
output:
rmarkdown::html_vignette:
self_contained: no

md_document:
variant: gfm
---

```{r opts, echo = FALSE}
knitr::opts_chunk$set (
collapse = TRUE,
warning = TRUE,
message = TRUE,
width = 120,
comment = "#>",
fig.retina = 2,
fig.path = "README-"
)
```

# osmdata

[![R build
status](https://github.com/ropensci/osmdata/workflows/R-CMD-check/badge.svg)](https://github.com/ropensci/osmdata/actions?query=workflow%3AR-CMD-check)
[![codecov](https://codecov.io/gh/ropensci/osmdata/branch/main/graph/badge.svg)](https://app.codecov.io/gh/ropensci/osmdata)
[![Project Status: Active](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/osmdata)](https://cran.r-project.org/package=osmdata/)
[![CRAN Downloads](https://cranlogs.r-pkg.org/badges/grand-total/osmdata?color=orange)](https://cran.r-project.org/package=osmdata)

[![](https://badges.ropensci.org/103_status.svg)](https://github.com/ropensci/software-review/issues/103)
[![status](https://joss.theoj.org/papers/10.21105/joss.00305/status.svg)](https://joss.theoj.org/papers/10.21105/joss.00305)

`osmdata` is an R package for accessing the data underlying OpenStreetMap
(OSM), delivered via the [Overpass
API](https://wiki.openstreetmap.org/wiki/Overpass_API). (Other packages such
as
[`OpenStreetMap`](https://cran.r-project.org/package=OpenStreetMap)
can be used to download raster tiles based on OSM data.)
[Overpass](https://overpass-turbo.eu) is a read-only API that extracts custom
selected parts of OSM data. Data can be returned in a variety of formats,
including as [Simple Features (`sf`)](https://cran.r-project.org/package=sf),
[Spatial (`sp`)](https://cran.r-project.org/package=sp), or [Silicate
(`sc`)](https://github.com/hypertidy/silicate) objects. The package is designed
to allow access to small-to-medium-sized OSM datasets (see
[`osmextract`](https://github.com/ropensci/osmextract) for an approach for
reading-in bulk OSM data extracts).

## Installation

To install latest CRAN version:
```{r cran-install, eval=FALSE}
install.packages ("osmdata")
```
Alternatively, install the development version with any one of the following
options:
```{r remotes, eval = FALSE}
# install.packages("remotes")
remotes::install_git ("https://git.sr.ht/~mpadge/osmdata")
remotes::install_bitbucket ("mpadge/osmdata")
remotes::install_gitlab ("mpadge/osmdata")
remotes::install_github ("ropensci/osmdata")
```

To load the package and check the version:
```{r, eval=TRUE}
library (osmdata)
packageVersion ("osmdata")
```

## Usage

[Overpass API](https://wiki.openstreetmap.org/wiki/Overpass_API) queries can be
built from a base query constructed with `opq` followed by `add_osm_feature`. The
corresponding OSM objects are then downloaded and converted to [Simple
Feature (`sf`)](https://cran.r-project.org/package=sf) objects with
`osmdata_sf()`, [Spatial (`sp`)](https://cran.r-project.org/package=sp)
objects with `osmdata_sp()` or [Silicate (`sc`)](https://github.com/hypertidy/silicate)
objects with `osmdata_sc()`. For example,

```{r query-thames, eval=FALSE}
x <- opq (bbox = c (-0.27, 51.47, -0.20, 51.50)) %>% # Chiswick Eyot in London, U.K.
add_osm_feature (key = "name", value = "Thames", value_exact = FALSE) %>%
osmdata_sf ()
x
```
```{r, echo=FALSE}
msg <- c (
"Object of class 'osmdata' with:\n",
" $bbox : 51.47,-0.27,51.5,-0.2\n",
" $overpass_call : The call submitted to the overpass API\n",
" $meta : metadata including timestamp and version numbers\n",
" $osm_points : 'sf' Simple Features Collection with 24548 points\n",
" $osm_lines : 'sf' Simple Features Collection with 2219 linestrings\n",
" $osm_polygons : 'sf' Simple Features Collection with 33 polygons\n",
" $osm_multilines : 'sf' Simple Features Collection with 6 multilinestrings\n",
" $osm_multipolygons : 'sf' Simple Features Collection with 3 multipolygons"
)
message (msg)
```

OSM data can also be downloaded in OSM XML format with `osmdata_xml()` and saved
for use with other software.

```r
osmdata_xml(q1, "data.osm")
```

### Bounding Boxes

All `osmdata` queries begin with a bounding box defining the area of the query.
The [`getbb()`
function](https://docs.ropensci.org/osmdata/reference/getbb.html) can be used
to extract bounding boxes for specified place names.
```{r getbb-astana}
getbb ("astana kazakhstan")
```
The next step is to convert that to an overpass query object with the [`opq()`
function](https://docs.ropensci.org/osmdata/reference/opq.html):
```{r opq}
q <- opq (getbb ("astana kazakhstan"))
q <- opq ("astana kazakhstan") # identical result
```
It is also possible to use bounding polygons rather than rectangular boxes:
```{r getbb-haines}
b <- getbb ("bangalore", format_out = "polygon")
class (b)
head (b [[1]])
```

### Features

The next step is to define features of interest using the [`add_osm_feature()`
function](https://docs.ropensci.org/osmdata/reference/add_osm_feature.html).
This function accepts `key` and `value` parameters specifying desired features
in the [OSM key-vale schema](https://wiki.openstreetmap.org/wiki/Map_Features).
Multiple `add_osm_feature()` calls may be combined as illustrated below, with
the result being a logical AND operation, thus returning all amenities that
are labelled both as restaurants and also as pubs:
```{r key-val1}
q <- opq ("portsmouth usa") %>%
add_osm_feature (key = "amenity", value = "restaurant") %>%
add_osm_feature (key = "amenity", value = "pub") # There are none of these
```

Features can also be requested by key only, in which case features with any
values for the specified key will be returned:
```{r key-val2}
q <- opq ("portsmouth usa") %>%
add_osm_feature (key = "amenity")
```
Such key-only queries can, however, translate into requesting very large data
sets, and should generally be avoided in favour of more precise key-value
specifications.

Negation can also be specified by pre-pending an exclamation mark so that the
following requests all amenities that are NOT labelled as restaurants and that
are not labelled as pubs:
```{r key-val3}
q <- opq ("portsmouth usa") %>%
add_osm_feature (key = "amenity", value = "!restaurant") %>%
add_osm_feature (key = "amenity", value = "!pub") # There are a lot of these
```

Additional arguments allow for more refined matching, such as the following
request for all pubs with "irish" in the name:
```{r key-val4}
q <- opq ("washington dc") %>%
add_osm_feature (key = "amenity", value = "pub") %>%
add_osm_feature (
key = "name", value = "irish",
value_exact = FALSE, match_case = FALSE
)
```

Logical OR combinations can be constructed using the separate
[`add_osm_features()`
function](https://docs.ropensci.org/osmdata/reference/add_osm_features.html).
The first of the above examples requests all features that are both restaurants
AND pubs. The following query will request data on restaurants OR pubs:

```{r features}
q <- opq ("portsmouth usa") %>%
add_osm_features (features = c (
"\"amenity\"=\"restaurant\"",
"\"amenity\"=\"pub\""
))
```

The vector of `features` contains key-value pairs separated by an [overpass
"filter"
symbol](https://wiki.openstreetmap.org/wiki/Overpass_API/Overpass_QL#By_tag_.28has-kv.29)
such as `=`, `!=`, or `~`. Each key and value must be enclosed in
escape-delimited quotations as shown above.

Full lists of available features and corresponding tags are available in the functions
[`?available_features`](https://docs.ropensci.org/osmdata/reference/available_features.html)
and
[`?available_tags`](https://docs.ropensci.org/osmdata/reference/available_tags.html).

### Data Formats

An overpass query constructed with the `opq()` and `add_osm_feature()`
functions is then sent to the [overpass server](https://overpass-turbo.eu) to
request data. These data may be returned in a variety of formats, currently
including:

1. XML data (downloaded locally) via
[`osmdata_xml()`](https://docs.ropensci.org/osmdata/reference/osmdata_xml.html);
2. [Simple Features (sf)](https://cran.r-project.org/package=sf) format via
[`osmdata_sf()`](https://docs.ropensci.org/osmdata/reference/osmdata_sf.html);
3. [R Spatial (sp)](https://cran.r-project.org/package=sp) format via
[`osmdata_sp()`](https://docs.ropensci.org/osmdata/reference/osmdata_sp.html);
4. [Silicate (SC)](https://github.com/hypertidy/silicate) format via
[`osmdata_sc()`](https://docs.ropensci.org/osmdata/reference/osmdata_sc.html);
and
5. `data.frame` format via
[`osmdata_data_frame()`](https://docs.ropensci.org/osmdata/reference/osmdata_data_frame.html).

### Additional Functionality {#additional}

Data may also be trimmed to within a defined polygonal shape with the
[`trim_osmdata()`](https://docs.ropensci.org/osmdata/reference/trim_osmdata.html)
function. Full package functionality is described on the
[website](https://docs.ropensci.org/osmdata/)

## Citation

```{r}
citation ("osmdata")
```

## Data licensing

All data that you access using `osmdata` is licensed under
[OpenStreetMap's license, the Open Database Licence](https://wiki.osmfoundation.org/wiki/Licence).
Any derived data and products must also carry the same licence. You should make
sure you understand that licence before publishing any derived datasets.

## Other approaches

- [osmextract](https://docs.ropensci.org/osmextract/) is an R package for downloading and importing compressed 'extracts' of OSM data covering large areas (e.g. all roads in a country).
The package represents data in [`sf`](https://github.com/r-spatial/sf) format only, and only allows a single "layer" (such as points, lines, or polygons) to be read at one time.
It is nevertheless recommended over osmdata for large queries of single layers, or where relationships between layers are not important.

- [osmapiR](https://docs.ropensci.org/osmapiR/) is an R interface to the [OpenStreetMap API v0.6](https://wiki.openstreetmap.org/wiki/API_v0.6) for fetching and saving raw geodata from/to the OpenStreetMap database.
This package allows access to OSM maps data as well as map notes, GPS traces, changelogs, and users data.
`osmapiR` enables editing or exploring the history of OSM objects, and is not intended to access OSM map data for other purposes (unlike the osmdata or osmextract packages).

## Code of Conduct

Please note that this package is released with a [Contributor Code of
Conduct](https://ropensci.org/code-of-conduct/). By contributing to this
project, you agree to abide by its terms.

## Contributors

All contributions to this project are gratefully acknowledged using the [`allcontributors` package](https://github.com/ropenscilabs/allcontributors) following the [all-contributors](https://allcontributors.org) specification. Contributions of any kind are welcome!

### Code





mpadge





Robinlovelace





jmaspons





hrbrmstr





virgesmith





maelle





elipousson





espinielli





agila5





idshklein





anthonynorth





jeroen





neogeomat





ec-nebi





Tazinho





odeleongt





Mashin6





angela-li





rgzn





fzenoni





stragu





patperu





MHenderson





karthik





jlacko





JimShady





dpprdan





danstowell





ccamara





brry

### Issue Authors





karpfen





sytpp





niklaas





RoyalTS





lrob





mem48





beingalink





yaakovfeldman





gregor-d





gregmacfarlane





legengliu





mtennekes





lbuk





prokulski





waholulu





ibarraespinosa





tbuckl





morellek





mdsumner





michielvandijk





loreabad6





slow-data





mroorda





MiKatt





alanlzl





PublicHealthDataGeek





mgageo





polettif





marcusyoung





barryrowlingson





ChrisWoodsSays





daluna1





khzannat26





gdkrmr





dipenpatel235





robitalec





nfruehADA





orlandombaa





changwoo-lee





maellecoursonnais





Suspicis





AlbertRapp





dmag-ir





FlxPo





vanhry





boiled-data





mlucassc





jedalong





mooibroekd





xiaofanliang





xtimbeau





joostschouppe





stalkerGH





RegularnaMatrica

### Issue Contributors





sckott





nsfinkelstein





gawbul





edzer





MAnalytics





richardellison





cboettig





prise6





PaoloFrac





Dris101





TomBor





matkoniecz





urswilke





Robsteranium





assignUser





rsbivand

[![ropensci\_footer](https://ropensci.org/public_images/github_footer.png)](https://ropensci.org)