osm_subscribe_changeset_discussion {osmapiR} | R Documentation |
Subscribe or unsubscribe to a changeset discussion
osm_subscribe_changeset_discussion(changeset_id)
osm_unsubscribe_changeset_discussion(changeset_id)
changeset_id |
The id of the changeset represented by a numeric or a character value. |
Returns the changeset information.
osm_subscribe_changeset_discussion()
: Subscribe to the discussion of a changeset to receive notifications
for new comments.
osm_unsubscribe_changeset_discussion()
: Unsubscribe from the discussion of a changeset to stop receiving
notifications.
Other changeset discussion's functions:
osm_comment_changeset_discussion()
,
osm_hide_comment_changeset_discussion()
## Not run:
# set_osmapi_connection(server = "openstreetmap.org")
osm_subscribe_changeset_discussion(137595351)
osm_unsubscribe_changeset_discussion("137595351")
## End(Not run)