c.osmar: Combine osmar objects

Description Usage Arguments Value Examples

View source: R/osmar.R

Description

Combine two or more osmar objects.

Usage

1
2
  ## S3 method for class 'osmar'
 c(...)

Arguments

...

osmar objects to be concatenated

Value

An osmar object based on the provided objects

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## Not run: 
    muc <- get_osm(center_bbox(11.575278, 48.137222, 200, 200))
    o1 <- subset(muc, node_ids = find(muc, node(tags(v == "Marienplatz"))))
    o2 <- subset(muc, ids = find_down(muc, way(c(96619179, 105071000))))

    o1
    o2
    c(o1, o2)
  
## End(Not run)

osmar documentation built on May 1, 2019, 7:33 p.m.

Related to c.osmar in osmar...