View source: R/osmapi_changesets.R
osm_download_changeset | R Documentation |
OsmChange
formatReturns the OsmChange document describing all changes associated with the changeset.
osm_download_changeset(changeset_id, format = c("R", "osc", "xml"))
changeset_id |
The id of the changeset represented by a numeric or a character value for which the OsmChange is requested. |
format |
Format of the output. Can be |
The result of calling this may change as long as the changeset is open.
The elements in the OsmChange are sorted by timestamp and version number.
There is osm_get_changesets()
to get only information about the changeset itself.
If format = "R"
, returns a data frame with one row for each edit action in the changeset. If format = "osc"
,
returns a xml2::xml_document in the OsmChange format.
Other get changesets' functions:
osm_get_changesets()
,
osm_query_changesets()
Other OsmChange's functions:
osm_diff_upload_changeset()
,
osmchange_create()
,
osmchange_delete()
,
osmchange_modify()
chaset <- osm_download_changeset(changeset_id = 137003062)
chaset
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.