Skip to contents

Returns the existing notes in the specified bounding box. The notes will be ordered by the date of their last change, the most recent one will be first.

Usage

osm_read_bbox_notes(
  bbox,
  limit = 100,
  closed = 7,
  format = c("R", "sf", "xml", "rss", "json", "gpx")
)

Arguments

bbox

Coordinates for the area to retrieve the notes from (left,bottom,right,top). Floating point numbers in degrees, expressing a valid bounding box, not larger than the configured size limit, 25 square degrees, not overlapping the dateline.

limit

Specifies the number of entries returned at max. A value between 1 and 10000 is valid. Default to 100.

closed

Specifies the number of days a note needs to be closed to no longer be returned. A value of 0 means only open notes are returned. A value of -1 means all notes are returned. Default to 7.

format

Format of the output. Can be "R" (default), "sf" "xml", "rss", "json" or "gpx".

Value

If format = "R", returns a data frame with one map note per row. If format = "sf", returns a sf object from sf.

format = "xml"

Returns a xml2::xml_document with the following format:

<?xml version="1.0" encoding="UTF-8"?>
<osm version="0.6" generator="OpenStreetMap server" copyright="OpenStreetMap and contributors" attribution="https://www.openstreetmap.org/copyright" license="https://opendatacommons.org/licenses/odbl/1-0/">
    <note lon="0.1000000" lat="51.0000000">
        <id>16659</id>
        <url>https://master.apis.dev.openstreetmap.org/api/0.6/notes/16659</url>
        <comment_url>https://master.apis.dev.openstreetmap.org/api/0.6/notes/16659/comment</comment_url>
        <close_url>https://master.apis.dev.openstreetmap.org/api/0.6/notes/16659/close</close_url>
        <date_created>2019-06-15 08:26:04 UTC</date_created>
        <status>open</status>
        <comments>
            <comment>
                <date>2019-06-15 08:26:04 UTC</date>
                <uid>1234</uid>
                <user>userName</user>
                <user_url>https://master.apis.dev.openstreetmap.org/user/userName</user_url>
                <action>opened</action>
                <text>ThisIsANote</text>
                <html>&lt;p&gt;ThisIsANote&lt;/p&gt;</html>
            </comment>
            ...
        </comments>
    </note>
    ...
</osm>

format = "json"

Returns a list with the following json structure:

{
 "type": "FeatureCollection",
 "features": [
  {
   "type": "Feature",
   "geometry": {"type": "Point", "coordinates": [0.1000000, 51.0000000]},
   "properties": {
    "id": 16659,
    "url": "https://master.apis.dev.openstreetmap.org/api/0.6/notes/16659.json",
    "comment_url": "https://master.apis.dev.openstreetmap.org/api/0.6/notes/16659/comment.json",
    "close_url": "https://master.apis.dev.openstreetmap.org/api/0.6/notes/16659/close.json",
    "date_created": "2019-06-15 08:26:04 UTC",
    "status": "open",
    "comments": [
     {"date": "2019-06-15 08:26:04 UTC", "uid": 1234, "user": "userName", "user_url": "https://master.apis.dev.openstreetmap.org/user/userName", "action": "opened", "text": "ThisIsANote", "html": "<p>ThisIsANote</p>"},
     ...
    ]
   }
  }
 ]
}

format = "rss" & format = "gpx"

For format in "rss", and "gpx", a xml2::xml_document with the corresponding format.

Note

The comment properties (uid, user, user_url) will be omitted if the comment was anonymous.

See also

Other get notes' functions: osm_feed_notes(), osm_get_notes(), osm_search_notes()

Examples

notes <- osm_read_bbox_notes(bbox = c(3.7854767, 39.7837403, 4.3347931, 40.1011851), limit = 10)
## bbox as a character value also works (bbox = "3.7854767,39.7837403,4.3347931,40.1011851").
notes
#>          lon        lat      id
#> 1  4.1442168 39.8644604 4414498
#> 2  3.8398672 40.0018138 4406584
#> 3  3.8421558 40.0028523 4406499
#> 4  4.2334754 39.8899198 4389224
#> 5  4.2338656 39.8907080 4389223
#> 6  4.2328864 39.8908630 4387379
#> 7  4.1390707 39.9348449 2849628
#> 8  4.0452817 39.9136028 4316804
#> 9  4.0087087 39.9832614 4284593
#> 10 4.0040635 39.9816121 4284592
#>                                                        url
#> 1  https://api.openstreetmap.org/api/0.6/notes/4414498.xml
#> 2  https://api.openstreetmap.org/api/0.6/notes/4406584.xml
#> 3  https://api.openstreetmap.org/api/0.6/notes/4406499.xml
#> 4  https://api.openstreetmap.org/api/0.6/notes/4389224.xml
#> 5  https://api.openstreetmap.org/api/0.6/notes/4389223.xml
#> 6  https://api.openstreetmap.org/api/0.6/notes/4387379.xml
#> 7  https://api.openstreetmap.org/api/0.6/notes/2849628.xml
#> 8  https://api.openstreetmap.org/api/0.6/notes/4316804.xml
#> 9  https://api.openstreetmap.org/api/0.6/notes/4284593.xml
#> 10 https://api.openstreetmap.org/api/0.6/notes/4284592.xml
#>                                                        comment_url
#> 1  https://api.openstreetmap.org/api/0.6/notes/4414498/comment.xml
#> 2  https://api.openstreetmap.org/api/0.6/notes/4406584/comment.xml
#> 3  https://api.openstreetmap.org/api/0.6/notes/4406499/comment.xml
#> 4  https://api.openstreetmap.org/api/0.6/notes/4389224/comment.xml
#> 5  https://api.openstreetmap.org/api/0.6/notes/4389223/comment.xml
#> 6  https://api.openstreetmap.org/api/0.6/notes/4387379/comment.xml
#> 7  https://api.openstreetmap.org/api/0.6/notes/2849628/comment.xml
#> 8  https://api.openstreetmap.org/api/0.6/notes/4316804/comment.xml
#> 9  https://api.openstreetmap.org/api/0.6/notes/4284593/comment.xml
#> 10 https://api.openstreetmap.org/api/0.6/notes/4284592/comment.xml
#>                                                        close_url
#> 1  https://api.openstreetmap.org/api/0.6/notes/4414498/close.xml
#> 2  https://api.openstreetmap.org/api/0.6/notes/4406584/close.xml
#> 3  https://api.openstreetmap.org/api/0.6/notes/4406499/close.xml
#> 4  https://api.openstreetmap.org/api/0.6/notes/4389224/close.xml
#> 5  https://api.openstreetmap.org/api/0.6/notes/4389223/close.xml
#> 6  https://api.openstreetmap.org/api/0.6/notes/4387379/close.xml
#> 7  https://api.openstreetmap.org/api/0.6/notes/2849628/close.xml
#> 8  https://api.openstreetmap.org/api/0.6/notes/4316804/close.xml
#> 9  https://api.openstreetmap.org/api/0.6/notes/4284593/close.xml
#> 10 https://api.openstreetmap.org/api/0.6/notes/4284592/close.xml
#>           date_created status
#> 1  2024-09-01 17:49:11   open
#> 2  2024-08-28 08:00:54   open
#> 3  2024-08-28 07:04:07   open
#> 4  2024-08-18 07:34:42   open
#> 5  2024-08-18 07:34:42   open
#> 6  2024-08-17 08:41:58   open
#> 7  2021-09-13 10:34:06   open
#> 8  2024-07-02 15:20:08   open
#> 9  2024-06-09 06:07:42   open
#> 10 2024-06-09 05:59:58   open
#>                                                           comments
#> 1                             1 comment from 2024-09-01 by Larry52
#> 2                                 1 comment from 2024-08-28 by xuv
#> 3                                 1 comment from 2024-08-28 by xuv
#> 4                                1 comment from 2024-08-18 by dnix
#> 5                                1 comment from 2024-08-18 by dnix
#> 6                                1 comment from 2024-08-17 by dnix
#> 7  2 comments from 2021-09-13 to 2024-07-08 by diibv, Johannes5...
#> 8                          1 comment from 2024-07-02 by Johannes58
#> 9                               1 comment from 2024-06-09 by edvac
#> 10                              1 comment from 2024-06-09 by edvac