This is an API method for querying changesets. It supports querying by different criteria.
Arguments
- bbox
Find changesets within the given bounding box coordinates (
left,bottom,right,top
).- user
Find changesets by the user with the given user id (numeric) or display name (character).
- time
Find changesets closed after this date and time. See details for the valid formats.
- time_2
find changesets that were closed after
time
and created beforetime_2
. In other words, any changesets that were open at some time during the given time rangetime
totime_2
. See details for the valid formats.- from
Find changesets created at or after this value. See details for the valid formats.
- to
Find changesets created before this value.
to
requiresfrom
, but not vice-versa. Ifto
is provided alone, it has no effect. See details for the valid formats.- open
If
TRUE
, only finds changesets that are still open but excludes changesets that are closed or have reached the element limit for a changeset (10,000 at the momentosm_capabilities()$api$changesets
).- closed
If
TRUE
, only finds changesets that are closed or have reached the element limit.- changeset_ids
Finds changesets with the specified ids.
- order
If
"newest"
(default), sort newest changesets first. If"oldest"
, reverse order.- limit
Specifies the maximum number of changesets returned. 100 as the default value.
- format
Format of the output. Can be
"R"
(default),"sf"
,"xml"
, or"json"
.If
FALSE
(default), the tags of the changesets are saved in a single list columntags
containing adata.frame
for each changeset with the keys and values. IfTRUE
, add a column for each key. Ignored ifformat != "R"
.
Value
If format = "R"
, returns a data frame with one OSM changeset per row. If format = "sf"
, returns a sf
object
from sf.
format = "xml"
Returns a xml2::xml_document with the following format:
<osm version="0.6" generator="OpenStreetMap server" copyright="OpenStreetMap and contributors" attribution="http://www.openstreetmap.org/copyright" license="http://opendatacommons.org/licenses/odbl/1-0/">
<changeset id="10" created_at="2005-05-01T16:09:37Z" open="false" comments_count="1" changes_count="10" closed_at="2005-05-01T17:16:44Z" min_lat="59.9513092" min_lon="10.7719727" max_lat="59.9561501" max_lon="10.7994537" uid="24" user="Petter Reinholdtsen">
<tag k="created_by" v="JOSM 1.61"/>
<tag k="comment" v="Just adding some streetnames"/>
...
</changeset>
<changeset ...>
...
</changeset>
</osm>
format = "json"
Please note that the JSON format has changed on August 25, 2024 with the release of openstreetmap-cgimap 2.0.0, to align it with the existing Rails format.
Returns a list with the following json structure:
{
"version": "0.6",
"generator": "openstreetmap-cgimap 2.0.0 (4003517 spike-08.openstreetmap.org)",
"copyright": "OpenStreetMap and contributors",
"attribution": "http://www.openstreetmap.org/copyright",
"license": "http://opendatacommons.org/licenses/odbl/1-0/",
"changesets": [
{
"id": 10,
"created_at": "2005-05-01T16:09:37Z",
"open": false,
"comments_count": 1,
"changes_count": 10,
"closed_at": "2005-05-01T17:16:44Z",
"min_lat": 59.9513092,
"min_lon": 10.7719727,
"max_lat": 59.9561501,
"max_lon": 10.7994537,
"uid": 24,
"user": "Petter Reinholdtsen",
"tags": {
"comment": "Just adding some streetnames",
"created_by": "JOSM 1.61"
}
},
...
]
}
Details
Where multiple queries are given the result will be those which match all of the requirements. The contents of the
returned document are the changesets and their tags. To get the full set of changes associated with a changeset, use
osm_download_changeset()
on each changeset ID individually.
Modification and extension of the basic queries above may be required to support rollback and other uses we find for changesets.
This call returns latest changesets matching criteria. The default ordering is newest first, but you can specify
order = "oldest"
to reverse the sort order (see
ordered by created_at
– see the current state).
Reverse ordering cannot be combined with time
.
Te valid formats for time
, time_2
, from
and to
parameters are POSIXt values or characters with anything
that Time.parse
Ruby function will
parse.
See also
Other get changesets' functions:
osm_download_changeset()
,
osm_get_changesets()
Examples
chst_ids <- osm_query_changesets(changeset_ids = c(137627129, 137625624))
chst_ids
#> id created_at closed_at open user
#> 1 137627129 2023-06-22 02:23:23 2023-06-22 02:23:24 FALSE Mementomoristultus
#> 2 137625624 2023-06-22 00:38:20 2023-06-22 00:38:20 FALSE Mementomoristultus
#> uid min_lat min_lon max_lat max_lon comments_count
#> 1 19648429 39.8308943 4.1564704 40.0215358 4.3280260 0
#> 2 19648429 42.2050642 -7.7351732 42.2050642 -7.7351732 0
#> changes_count
#> 1 2
#> 2 1
#> tags
#> 1 6 tags: changesets_count=154 | comment=--- | created_by=iD 2.25.2 | host=https:/...
#> 2 6 tags: changesets_count=53 | comment=A ver, subnormal, en español es JUNUQUERA ...
chsts <- osm_query_changesets(
bbox = c(-1.241112, 38.0294955, 8.4203171, 42.9186456),
user = "Mementomoristultus",
time = "2023-06-22T02:23:23Z",
time_2 = "2023-06-22T00:38:20Z"
)
chsts
#> [1] id created_at closed_at open user
#> [6] uid min_lat min_lon max_lat max_lon
#> [11] comments_count changes_count tags
#> <0 rows> (or 0-length row.names)
chsts2 <- osm_query_changesets(
bbox = c("-9.3015367,41.8073642,-6.7339533,43.790422"),
user = "Mementomoristultus",
closed = TRUE
)
chsts2
#> id created_at closed_at open user
#> 1 137626978 2023-06-22 02:10:24 2023-06-22 02:10:24 FALSE Mementomoristultus
#> 2 137626972 2023-06-22 02:09:43 2023-06-22 02:09:44 FALSE Mementomoristultus
#> 3 137626970 2023-06-22 02:09:28 2023-06-22 02:09:28 FALSE Mementomoristultus
#> 4 137626862 2023-06-22 02:01:25 2023-06-22 02:01:26 FALSE Mementomoristultus
#> 5 137626853 2023-06-22 02:00:48 2023-06-22 02:00:48 FALSE Mementomoristultus
#> 6 137626849 2023-06-22 02:00:24 2023-06-22 02:00:24 FALSE Mementomoristultus
#> 7 137626836 2023-06-22 01:59:16 2023-06-22 01:59:16 FALSE Mementomoristultus
#> 8 137626833 2023-06-22 01:58:51 2023-06-22 01:58:51 FALSE Mementomoristultus
#> 9 137626827 2023-06-22 01:58:12 2023-06-22 01:58:12 FALSE Mementomoristultus
#> 10 137626819 2023-06-22 01:57:49 2023-06-22 01:57:49 FALSE Mementomoristultus
#> 11 137626813 2023-06-22 01:57:20 2023-06-22 01:57:20 FALSE Mementomoristultus
#> 12 137626807 2023-06-22 01:56:41 2023-06-22 01:56:42 FALSE Mementomoristultus
#> 13 137626802 2023-06-22 01:56:13 2023-06-22 01:56:14 FALSE Mementomoristultus
#> 14 137626794 2023-06-22 01:55:22 2023-06-22 01:55:22 FALSE Mementomoristultus
#> 15 137626788 2023-06-22 01:54:57 2023-06-22 01:54:57 FALSE Mementomoristultus
#> 16 137626782 2023-06-22 01:54:22 2023-06-22 01:54:22 FALSE Mementomoristultus
#> 17 137626769 2023-06-22 01:53:38 2023-06-22 01:53:38 FALSE Mementomoristultus
#> 18 137626762 2023-06-22 01:53:12 2023-06-22 01:53:13 FALSE Mementomoristultus
#> 19 137626755 2023-06-22 01:52:35 2023-06-22 01:52:36 FALSE Mementomoristultus
#> 20 137626750 2023-06-22 01:52:18 2023-06-22 01:52:18 FALSE Mementomoristultus
#> 21 137626743 2023-06-22 01:51:52 2023-06-22 01:51:52 FALSE Mementomoristultus
#> 22 137626736 2023-06-22 01:51:21 2023-06-22 01:51:22 FALSE Mementomoristultus
#> 23 137626718 2023-06-22 01:50:19 2023-06-22 01:50:19 FALSE Mementomoristultus
#> 24 137626713 2023-06-22 01:50:00 2023-06-22 01:50:00 FALSE Mementomoristultus
#> 25 137626710 2023-06-22 01:49:40 2023-06-22 01:49:40 FALSE Mementomoristultus
#> 26 137626704 2023-06-22 01:49:20 2023-06-22 01:49:20 FALSE Mementomoristultus
#> 27 137626693 2023-06-22 01:48:30 2023-06-22 01:48:31 FALSE Mementomoristultus
#> 28 137626667 2023-06-22 01:46:44 2023-06-22 01:46:45 FALSE Mementomoristultus
#> 29 137626664 2023-06-22 01:46:23 2023-06-22 01:46:23 FALSE Mementomoristultus
#> 30 137626659 2023-06-22 01:45:54 2023-06-22 01:45:54 FALSE Mementomoristultus
#> 31 137626644 2023-06-22 01:44:32 2023-06-22 01:44:32 FALSE Mementomoristultus
#> 32 137626632 2023-06-22 01:43:19 2023-06-22 01:43:19 FALSE Mementomoristultus
#> 33 137626618 2023-06-22 01:42:32 2023-06-22 01:42:32 FALSE Mementomoristultus
#> 34 137626593 2023-06-22 01:40:31 2023-06-22 01:40:32 FALSE Mementomoristultus
#> 35 137626567 2023-06-22 01:39:13 2023-06-22 01:39:14 FALSE Mementomoristultus
#> 36 137626527 2023-06-22 01:36:47 2023-06-22 01:36:47 FALSE Mementomoristultus
#> 37 137626508 2023-06-22 01:35:27 2023-06-22 01:35:27 FALSE Mementomoristultus
#> 38 137626497 2023-06-22 01:35:00 2023-06-22 01:35:01 FALSE Mementomoristultus
#> 39 137626489 2023-06-22 01:34:25 2023-06-22 01:34:25 FALSE Mementomoristultus
#> 40 137626470 2023-06-22 01:33:33 2023-06-22 01:33:34 FALSE Mementomoristultus
#> 41 137626459 2023-06-22 01:33:09 2023-06-22 01:33:09 FALSE Mementomoristultus
#> 42 137626449 2023-06-22 01:32:34 2023-06-22 01:32:35 FALSE Mementomoristultus
#> 43 137626404 2023-06-22 01:30:05 2023-06-22 01:30:05 FALSE Mementomoristultus
#> 44 137626387 2023-06-22 01:28:59 2023-06-22 01:28:59 FALSE Mementomoristultus
#> 45 137626383 2023-06-22 01:28:43 2023-06-22 01:28:44 FALSE Mementomoristultus
#> 46 137626365 2023-06-22 01:27:28 2023-06-22 01:27:29 FALSE Mementomoristultus
#> 47 137626344 2023-06-22 01:26:20 2023-06-22 01:26:21 FALSE Mementomoristultus
#> 48 137626336 2023-06-22 01:25:53 2023-06-22 01:25:54 FALSE Mementomoristultus
#> 49 137626330 2023-06-22 01:25:16 2023-06-22 01:25:16 FALSE Mementomoristultus
#> 50 137626323 2023-06-22 01:24:34 2023-06-22 01:24:35 FALSE Mementomoristultus
#> 51 137626304 2023-06-22 01:23:00 2023-06-22 01:23:01 FALSE Mementomoristultus
#> 52 137626292 2023-06-22 01:22:40 2023-06-22 01:22:40 FALSE Mementomoristultus
#> 53 137626254 2023-06-22 01:19:58 2023-06-22 01:19:58 FALSE Mementomoristultus
#> 54 137626244 2023-06-22 01:19:01 2023-06-22 01:19:01 FALSE Mementomoristultus
#> 55 137626234 2023-06-22 01:18:38 2023-06-22 01:18:38 FALSE Mementomoristultus
#> 56 137626224 2023-06-22 01:18:03 2023-06-22 01:18:03 FALSE Mementomoristultus
#> 57 137626212 2023-06-22 01:16:56 2023-06-22 01:16:56 FALSE Mementomoristultus
#> 58 137626204 2023-06-22 01:16:05 2023-06-22 01:16:06 FALSE Mementomoristultus
#> 59 137626172 2023-06-22 01:15:15 2023-06-22 01:15:16 FALSE Mementomoristultus
#> 60 137626141 2023-06-22 01:12:52 2023-06-22 01:12:52 FALSE Mementomoristultus
#> 61 137626135 2023-06-22 01:12:10 2023-06-22 01:12:10 FALSE Mementomoristultus
#> 62 137626110 2023-06-22 01:09:57 2023-06-22 01:09:57 FALSE Mementomoristultus
#> 63 137626096 2023-06-22 01:08:59 2023-06-22 01:08:59 FALSE Mementomoristultus
#> 64 137626082 2023-06-22 01:08:20 2023-06-22 01:08:20 FALSE Mementomoristultus
#> 65 137626069 2023-06-22 01:07:36 2023-06-22 01:07:36 FALSE Mementomoristultus
#> 66 137626059 2023-06-22 01:06:54 2023-06-22 01:06:54 FALSE Mementomoristultus
#> 67 137626038 2023-06-22 01:06:05 2023-06-22 01:06:05 FALSE Mementomoristultus
#> 68 137626015 2023-06-22 01:04:17 2023-06-22 01:04:18 FALSE Mementomoristultus
#> 69 137625998 2023-06-22 01:03:15 2023-06-22 01:03:16 FALSE Mementomoristultus
#> 70 137625985 2023-06-22 01:02:39 2023-06-22 01:02:39 FALSE Mementomoristultus
#> 71 137625968 2023-06-22 01:01:13 2023-06-22 01:01:13 FALSE Mementomoristultus
#> 72 137625962 2023-06-22 01:00:32 2023-06-22 01:00:33 FALSE Mementomoristultus
#> 73 137625947 2023-06-22 00:59:04 2023-06-22 00:59:05 FALSE Mementomoristultus
#> 74 137625938 2023-06-22 00:58:29 2023-06-22 00:58:30 FALSE Mementomoristultus
#> 75 137625923 2023-06-22 00:57:08 2023-06-22 00:57:09 FALSE Mementomoristultus
#> 76 137625913 2023-06-22 00:56:38 2023-06-22 00:56:38 FALSE Mementomoristultus
#> 77 137625892 2023-06-22 00:55:35 2023-06-22 00:55:36 FALSE Mementomoristultus
#> 78 137625865 2023-06-22 00:53:25 2023-06-22 00:53:26 FALSE Mementomoristultus
#> 79 137625861 2023-06-22 00:53:10 2023-06-22 00:53:10 FALSE Mementomoristultus
#> 80 137625835 2023-06-22 00:51:53 2023-06-22 00:51:53 FALSE Mementomoristultus
#> 81 137625820 2023-06-22 00:51:19 2023-06-22 00:51:19 FALSE Mementomoristultus
#> 82 137625811 2023-06-22 00:50:51 2023-06-22 00:50:51 FALSE Mementomoristultus
#> 83 137625792 2023-06-22 00:49:34 2023-06-22 00:49:35 FALSE Mementomoristultus
#> 84 137625777 2023-06-22 00:48:47 2023-06-22 00:48:47 FALSE Mementomoristultus
#> 85 137625737 2023-06-22 00:46:44 2023-06-22 00:46:44 FALSE Mementomoristultus
#> 86 137625736 2023-06-22 00:46:25 2023-06-22 00:46:25 FALSE Mementomoristultus
#> 87 137625716 2023-06-22 00:44:56 2023-06-22 00:44:56 FALSE Mementomoristultus
#> 88 137625708 2023-06-22 00:44:29 2023-06-22 00:44:29 FALSE Mementomoristultus
#> 89 137625696 2023-06-22 00:43:38 2023-06-22 00:43:38 FALSE Mementomoristultus
#> 90 137625683 2023-06-22 00:42:40 2023-06-22 00:42:40 FALSE Mementomoristultus
#> 91 137625675 2023-06-22 00:42:03 2023-06-22 00:42:03 FALSE Mementomoristultus
#> 92 137625650 2023-06-22 00:40:26 2023-06-22 00:40:26 FALSE Mementomoristultus
#> 93 137625645 2023-06-22 00:39:56 2023-06-22 00:39:57 FALSE Mementomoristultus
#> 94 137625631 2023-06-22 00:38:59 2023-06-22 00:38:59 FALSE Mementomoristultus
#> 95 137625624 2023-06-22 00:38:20 2023-06-22 00:38:20 FALSE Mementomoristultus
#> 96 137625596 2023-06-22 00:36:19 2023-06-22 00:36:19 FALSE Mementomoristultus
#> 97 137625554 2023-06-22 00:33:00 2023-06-22 00:33:00 FALSE Mementomoristultus
#> 98 137625545 2023-06-22 00:32:09 2023-06-22 00:32:09 FALSE Mementomoristultus
#> 99 137625535 2023-06-22 00:31:25 2023-06-22 00:31:26 FALSE Mementomoristultus
#> 100 137625517 2023-06-22 00:30:52 2023-06-22 00:30:52 FALSE Mementomoristultus
#> uid min_lat min_lon max_lat max_lon comments_count
#> 1 19648429 42.4327433 -6.9782486 42.4328559 -6.9780026 0
#> 2 19648429 42.4327498 -6.9765097 42.4328834 -6.9763031 0
#> 3 19648429 42.4328903 -6.9756364 42.4330040 -6.9754741 0
#> 4 19648429 43.4488066 -7.8527610 43.4501613 -7.8507456 0
#> 5 19648429 43.4499647 -7.8526224 43.4500774 -7.8525214 0
#> 6 19648429 43.4498605 -7.8527232 43.4509926 -7.8497643 0
#> 7 19648429 43.4509478 -7.8490408 43.4511815 -7.8487310 0
#> 8 19648429 43.4503112 -7.8491926 43.4506422 -7.8486152 0
#> 9 19648429 43.4515806 -7.8518012 43.4518359 -7.8513226 0
#> 10 19648429 43.4517061 -7.8521361 43.4518324 -7.8519759 0
#> 11 19648429 43.4522220 -7.8526636 43.4525296 -7.8519676 0
#> 12 19648429 43.4517360 -7.8530077 43.4523902 -7.8521619 0
#> 13 19648429 43.4520269 -7.8533595 43.4523774 -7.8525364 0
#> 14 19648429 43.4511797 -7.8532552 43.4515458 -7.8529505 0
#> 15 19648429 43.4513242 -7.8541611 43.4519930 -7.8538848 0
#> 16 19648429 43.4516472 -7.8541538 43.4517629 -7.8539604 0
#> 17 19648429 43.4522560 -7.8541540 43.4527330 -7.8537188 0
#> 18 19648429 43.4521268 -7.8541540 43.4527162 -7.8527612 0
#> 19 19648429 43.4526068 -7.8534273 43.4527321 -7.8532516 0
#> 20 19648429 43.4527765 -7.8531986 43.4529264 -7.8530484 0
#> 21 19648429 43.4535627 -7.8540733 43.4542773 -7.8533637 0
#> 22 19648429 43.4536685 -7.8537461 43.4541080 -7.8533637 0
#> 23 19648429 43.4553224 -7.8532966 43.4560506 -7.8527512 0
#> 24 19648429 43.4552444 -7.8527283 43.4559984 -7.8521881 0
#> 25 19648429 43.4550015 -7.8517976 43.4551113 -7.8516693 0
#> 26 19648429 43.4546616 -7.8518618 43.4551113 -7.8515089 0
#> 27 19648429 43.4550767 -7.8517039 43.4558127 -7.8502176 0
#> 28 19648429 43.4507498 -7.8526686 43.4507576 -7.8526659 0
#> 29 19648429 43.4508942 -7.8531805 43.4511123 -7.8527787 0
#> 30 19648429 43.4509098 -7.8531698 43.4511123 -7.8527787 0
#> 31 19648429 43.4463618 -7.8549352 43.4466924 -7.8544243 0
#> 32 19648429 43.4476405 -7.8528130 43.4510094 -7.8431001 0
#> 33 19648429 43.3702548 -8.0135855 43.5705121 -7.7441559 1
#> 34 19648429 43.2978359 -7.6831051 43.2982351 -7.6826753 0
#> 35 19648429 43.2975390 -7.6837125 43.2983786 -7.6823740 0
#> 36 19648429 43.2969182 -7.6808522 43.2972142 -7.6803010 0
#> 37 19648429 43.2945706 -7.6834252 43.2969974 -7.6808524 0
#> 38 19648429 43.2949139 -7.6815947 43.2964523 -7.6786533 0
#> 39 19648429 43.2960746 -7.6777508 43.2961005 -7.6773423 0
#> 40 19648429 43.2959736 -7.6779547 43.2962932 -7.6767778 0
#> 41 19648429 43.2932307 -7.6797783 43.2968361 -7.6651626 0
#> 42 19648429 43.2965293 -7.6781078 43.2968480 -7.6768001 0
#> 43 19648429 42.4365591 -8.0811560 42.4379437 -8.0787144 0
#> 44 19648429 42.4377503 -8.1221443 42.5539628 -8.0792497 0
#> 45 19648429 42.4378920 -8.0797572 42.4388115 -8.0785782 0
#> 46 19648429 42.4384228 -8.0814797 42.4392050 -8.0799395 0
#> 47 19648429 42.4318442 -8.0737985 42.4319985 -8.0735708 0
#> 48 19648429 42.4305063 -8.0748481 42.4328356 -8.0731101 0
#> 49 19648429 42.4305063 -8.0748516 42.4328356 -8.0731101 0
#> 50 19648429 42.4308621 -8.0757847 42.4321425 -8.0739688 0
#> 51 19648429 42.4295185 -8.0778774 42.4296191 -8.0776356 0
#> 52 19648429 42.4289511 -8.0785746 42.4295725 -8.0778766 0
#> 53 19648429 42.4290614 -8.0780855 42.4294285 -8.0775391 0
#> 54 19648429 42.4290614 -8.0779255 42.4294285 -8.0775391 0
#> 55 19648429 42.4293510 -8.0777761 42.4295216 -8.0775239 0
#> 56 19648429 42.4293450 -8.0776356 42.4297637 -8.0770954 0
#> 57 19648429 42.4295003 -8.0776356 42.4298676 -8.0772233 0
#> 58 19648429 42.4290097 -8.0780481 42.4300046 -8.0759415 0
#> 59 19648429 42.4300046 -8.0780481 42.4300046 -8.0780481 0
#> 60 19648429 42.2060536 -7.8122281 42.2063592 -7.8116694 0
#> 61 19648429 42.2053658 -7.8122281 42.2060536 -7.8104450 0
#> 62 19648429 42.1981067 -7.7269556 42.2382445 -7.6759058 0
#> 63 19648429 42.2072992 -7.7062125 42.2076398 -7.7055245 0
#> 64 19648429 42.2074878 -7.7059424 42.2075134 -7.7058701 0
#> 65 19648429 42.2112432 -7.7045158 42.2117544 -7.7019787 0
#> 66 19648429 42.2111043 -7.7032614 42.2117268 -7.7020659 0
#> 67 19648429 42.2094798 -7.7075087 42.2094798 -7.7075087 0
#> 68 19648429 42.2109155 -7.7391485 42.2127529 -7.7326565 0
#> 69 19648429 42.2112087 -7.7399101 42.2115102 -7.7371774 0
#> 70 19648429 42.2003794 -7.7544323 42.2226573 -7.7162016 0
#> 71 19648429 42.2029584 -7.7384273 42.2040140 -7.7372429 0
#> 72 19648429 42.2025465 -7.7392016 42.2048786 -7.7370296 0
#> 73 19648429 42.2035186 -7.7336482 42.2041737 -7.7332160 0
#> 74 19648429 42.2032290 -7.7348917 42.2045757 -7.7327696 0
#> 75 19648429 42.2039616 -7.7352359 42.2039616 -7.7352359 0
#> 76 19648429 42.2037376 -7.7351734 42.2044044 -7.7347065 0
#> 77 19648429 42.2041292 -7.7351734 42.2044044 -7.7347111 0
#> 78 19648429 42.2084783 -7.7359982 42.2084829 -7.7359905 0
#> 79 19648429 42.2066220 -7.7365168 42.2084385 -7.7359513 0
#> 80 19648429 42.2066257 -7.7366514 42.2068222 -7.7363296 0
#> 81 19648429 42.2073067 -7.7359941 42.2073067 -7.7359941 0
#> 82 19648429 42.2067814 -7.7365875 42.2075145 -7.7359019 0
#> 83 19648429 42.2064378 -7.7394477 42.2109170 -7.7348842 0
#> 84 19648429 42.2064378 -7.7394477 42.2109170 -7.7348842 0
#> 85 19648429 42.2083628 -7.7365713 42.2083658 -7.7365713 0
#> 86 19648429 42.2077566 -7.7365713 42.2084783 -7.7358144 0
#> 87 19648429 42.2078951 -7.7365713 42.2084783 -7.7358144 0
#> 88 19648429 42.2079468 -7.7365713 42.2084783 -7.7358340 0
#> 89 19648429 42.2035461 -7.7356534 42.2042092 -7.7350585 0
#> 90 19648429 42.2040033 -7.7365230 42.2042079 -7.7362766 0
#> 91 19648429 42.2052446 -7.7373669 42.2052460 -7.7368374 0
#> 92 19648429 42.2045757 -7.7353771 42.2047506 -7.7348122 0
#> 93 19648429 42.2049363 -7.7359801 42.2050278 -7.7354976 0
#> 94 19648429 42.2049363 -7.7359801 42.2050642 -7.7351732 0
#> 95 19648429 42.2050642 -7.7351732 42.2050642 -7.7351732 0
#> 96 19648429 42.2406176 -7.6729808 42.2426174 -7.6713559 0
#> 97 19648429 42.2395130 -7.6722150 42.2403324 -7.6717483 0
#> 98 19648429 42.2401764 -7.6722545 42.2407140 -7.6717036 0
#> 99 19648429 42.2404198 -7.6717710 42.2404601 -7.6717028 0
#> 100 19648429 42.2403208 -7.6720857 42.2404641 -7.6717036 0
#> changes_count
#> 1 5
#> 2 5
#> 3 5
#> 4 2
#> 5 1
#> 6 7
#> 7 1
#> 8 2
#> 9 1
#> 10 5
#> 11 5
#> 12 2
#> 13 2
#> 14 1
#> 15 1
#> 16 3
#> 17 4
#> 18 2
#> 19 1
#> 20 1
#> 21 25
#> 22 1
#> 23 1
#> 24 1
#> 25 3
#> 26 2
#> 27 1
#> 28 1
#> 29 4
#> 30 1
#> 31 1
#> 32 1
#> 33 1
#> 34 18
#> 35 5
#> 36 1
#> 37 1
#> 38 4
#> 39 2
#> 40 5
#> 41 5
#> 42 6
#> 43 4
#> 44 3
#> 45 29
#> 46 5
#> 47 5
#> 48 5
#> 49 3
#> 50 6
#> 51 2
#> 52 30
#> 53 8
#> 54 5
#> 55 10
#> 56 11
#> 57 12
#> 58 8
#> 59 1
#> 60 1
#> 61 2
#> 62 3
#> 63 3
#> 64 2
#> 65 13
#> 66 6
#> 67 1
#> 68 7
#> 69 5
#> 70 2
#> 71 2
#> 72 7
#> 73 2
#> 74 1
#> 75 1
#> 76 1
#> 77 1
#> 78 1
#> 79 15
#> 80 1
#> 81 1
#> 82 16
#> 83 2
#> 84 1
#> 85 1
#> 86 3
#> 87 1
#> 88 1
#> 89 6
#> 90 3
#> 91 1
#> 92 1
#> 93 4
#> 94 3
#> 95 1
#> 96 66
#> 97 2
#> 98 17
#> 99 2
#> 100 1
#> tags
#> 1 6 tags: changesets_count=150 | comment=18945 | created_by=iD 2.25.2 | host=https...
#> 2 6 tags: changesets_count=149 | comment=18945 | created_by=iD 2.25.2 | host=https...
#> 3 6 tags: changesets_count=148 | comment=18945 | created_by=iD 2.25.2 | host=https...
#> 4 6 tags: changesets_count=144 | comment=11 | created_by=iD 2.25.2 | host=https://...
#> 5 6 tags: changesets_count=143 | comment=13 | created_by=iD 2.25.2 | host=https://...
#> 6 6 tags: changesets_count=142 | comment=13 | created_by=iD 2.25.2 | host=https://...
#> 7 6 tags: changesets_count=141 | comment=13 | created_by=iD 2.25.2 | host=https://...
#> 8 6 tags: changesets_count=140 | comment=11 | created_by=iD 2.25.2 | host=https://...
#> 9 7 tags: changesets_count=139 | comment=12 | created_by=iD 2.25.2 | host=https://...
#> 10 6 tags: changesets_count=138 | comment=13 | created_by=iD 2.25.2 | host=https://...
#> 11 6 tags: changesets_count=137 | comment=12 | created_by=iD 2.25.2 | host=https://...
#> 12 6 tags: changesets_count=136 | comment=12 | created_by=iD 2.25.2 | host=https://...
#> 13 6 tags: changesets_count=135 | comment=12 | created_by=iD 2.25.2 | host=https://...
#> 14 6 tags: changesets_count=134 | comment=12 | created_by=iD 2.25.2 | host=https://...
#> 15 6 tags: changesets_count=133 | comment=12 | created_by=iD 2.25.2 | host=https://...
#> 16 6 tags: changesets_count=132 | comment=12 | created_by=iD 2.25.2 | host=https://...
#> 17 6 tags: changesets_count=131 | comment=48 | created_by=iD 2.25.2 | host=https://...
#> 18 6 tags: changesets_count=130 | comment=45 | created_by=iD 2.25.2 | host=https://...
#> 19 6 tags: changesets_count=129 | comment=45 | created_by=iD 2.25.2 | host=https://...
#> 20 6 tags: changesets_count=128 | comment=46 | created_by=iD 2.25.2 | host=https://...
#> 21 6 tags: changesets_count=127 | comment=45 | created_by=iD 2.25.2 | host=https://...
#> 22 7 tags: changesets_count=126 | comment=45 | created_by=iD 2.25.2 | host=https://...
#> 23 6 tags: changesets_count=125 | comment=45 | created_by=iD 2.25.2 | host=https://...
#> 24 6 tags: changesets_count=124 | comment=67 | created_by=iD 2.25.2 | host=https://...
#> 25 6 tags: changesets_count=123 | comment=56 | created_by=iD 2.25.2 | host=https://...
#> 26 7 tags: changesets_count=122 | comment=47 | created_by=iD 2.25.2 | host=https://...
#> 27 6 tags: changesets_count=121 | comment=48 | created_by=iD 2.25.2 | host=https://...
#> 28 6 tags: changesets_count=120 | comment=56 | created_by=iD 2.25.2 | host=https://...
#> 29 6 tags: changesets_count=119 | comment=74 | created_by=iD 2.25.2 | host=https://...
#> 30 6 tags: changesets_count=118 | comment=14 | created_by=iD 2.25.2 | host=https://...
#> 31 6 tags: changesets_count=117 | comment=18 | created_by=iD 2.25.2 | host=https://...
#> 32 6 tags: changesets_count=116 | comment=27 | created_by=iD 2.25.2 | host=https://...
#> 33 6 tags: changesets_count=115 | comment=21 | created_by=iD 2.25.2 | host=https://...
#> 34 6 tags: changesets_count=114 | comment=22 | created_by=iD 2.25.2 | host=https://...
#> 35 6 tags: changesets_count=113 | comment=23 | created_by=iD 2.25.2 | host=https://...
#> 36 6 tags: changesets_count=112 | comment=24 | created_by=iD 2.25.2 | host=https://...
#> 37 6 tags: changesets_count=111 | comment=26 | created_by=iD 2.25.2 | host=https://...
#> 38 6 tags: changesets_count=110 | comment=26 | created_by=iD 2.25.2 | host=https://...
#> 39 6 tags: changesets_count=109 | comment=27 | created_by=iD 2.25.2 | host=https://...
#> 40 6 tags: changesets_count=108 | comment=79 | created_by=iD 2.25.2 | host=https://...
#> 41 7 tags: changesets_count=107 | comment=78 | created_by=iD 2.25.2 | host=https://...
#> 42 6 tags: changesets_count=106 | comment=87 | created_by=iD 2.25.2 | host=https://...
#> 43 6 tags: changesets_count=105 | comment=87 | created_by=iD 2.25.2 | host=https://...
#> 44 6 tags: changesets_count=104 | comment=80 | created_by=iD 2.25.2 | host=https://...
#> 45 6 tags: changesets_count=103 | comment=49 | created_by=iD 2.25.2 | host=https://...
#> 46 6 tags: changesets_count=102 | comment=42 | created_by=iD 2.25.2 | host=https://...
#> 47 6 tags: changesets_count=101 | comment=40 | created_by=iD 2.25.2 | host=https://...
#> 48 6 tags: changesets_count=100 | comment=39 | created_by=iD 2.25.2 | host=https://...
#> 49 6 tags: changesets_count=99 | comment=38 | created_by=iD 2.25.2 | host=https://w...
#> 50 6 tags: changesets_count=98 | comment=35 | created_by=iD 2.25.2 | host=https://w...
#> 51 6 tags: changesets_count=97 | comment=38 | created_by=iD 2.25.2 | host=https://w...
#> 52 6 tags: changesets_count=96 | comment=37 | created_by=iD 2.25.2 | host=https://w...
#> 53 6 tags: changesets_count=95 | comment=He hecho más por Carballino que tu, pedazo...
#> 54 6 tags: changesets_count=94 | comment=megaedificio | created_by=iD 2.25.2 | host...
#> 55 6 tags: changesets_count=93 | comment=63 | created_by=iD 2.25.2 | host=https://w...
#> 56 6 tags: changesets_count=92 | comment=62 | created_by=iD 2.25.2 | host=https://w...
#> 57 6 tags: changesets_count=91 | comment=60 | created_by=iD 2.25.2 | host=https://w...
#> 58 6 tags: changesets_count=90 | comment=52 | created_by=iD 2.25.2 | host=https://w...
#> 59 6 tags: changesets_count=89 | comment=49 | created_by=iD 2.25.2 | host=https://w...
#> 60 6 tags: changesets_count=88 | comment=56 | created_by=iD 2.25.2 | host=https://w...
#> 61 6 tags: changesets_count=87 | comment=55 | created_by=iD 2.25.2 | host=https://w...
#> 62 6 tags: changesets_count=86 | comment=48 | created_by=iD 2.25.2 | host=https://w...
#> 63 6 tags: changesets_count=85 | comment=45 | created_by=iD 2.25.2 | host=https://w...
#> 64 6 tags: changesets_count=84 | comment=45 | created_by=iD 2.25.2 | host=https://w...
#> 65 6 tags: changesets_count=83 | comment=27 | created_by=iD 2.25.2 | host=https://w...
#> 66 6 tags: changesets_count=82 | comment=18 | created_by=iD 2.25.2 | host=https://w...
#> 67 6 tags: changesets_count=81 | comment=como tantos | created_by=iD 2.25.2 | host=...
#> 68 7 tags: changesets_count=80 | comment=15 | created_by=iD 2.25.2 | host=https://w...
#> 69 6 tags: changesets_count=79 | comment=47 | created_by=iD 2.25.2 | host=https://w...
#> 70 6 tags: changesets_count=78 | comment=en este río bañéme tantas veces... vete a ...
#> 71 6 tags: changesets_count=77 | comment=14 | created_by=iD 2.25.2 | host=https://w...
#> 72 6 tags: changesets_count=76 | comment=este fundó la Guardia Civil, pa ti ... | c...
#> 73 6 tags: changesets_count=75 | comment=79 | created_by=iD 2.25.2 | host=https://w...
#> 74 6 tags: changesets_count=74 | comment=Este Asdrubal fue un personaje en tiempos ...
#> 75 6 tags: changesets_count=73 | comment=47 | created_by=iD 2.25.2 | host=https://w...
#> 76 6 tags: changesets_count=72 | comment=una vez el nombrecito, basta | created_by=...
#> 77 6 tags: changesets_count=71 | comment=Colegiata es otro tipo de edificio distint...
#> 78 6 tags: changesets_count=70 | comment=80 | created_by=iD 2.25.2 | host=https://w...
#> 79 6 tags: changesets_count=69 | comment=79 | created_by=iD 2.25.2 | host=https://w...
#> 80 6 tags: changesets_count=68 | comment=78 | created_by=iD 2.25.2 | host=https://w...
#> 81 6 tags: changesets_count=67 | comment=4 | created_by=iD 2.25.2 | host=https://ww...
#> 82 6 tags: changesets_count=66 | comment=5 | created_by=iD 2.25.2 | host=https://ww...
#> 83 6 tags: changesets_count=65 | comment=6 | created_by=iD 2.25.2 | host=https://ww...
#> 84 6 tags: changesets_count=64 | comment=7 | created_by=iD 2.25.2 | host=https://ww...
#> 85 6 tags: changesets_count=63 | comment=7 | created_by=iD 2.25.2 | host=https://ww...
#> 86 6 tags: changesets_count=62 | comment=8 | created_by=iD 2.25.2 | host=https://ww...
#> 87 6 tags: changesets_count=61 | comment=8 | created_by=iD 2.25.2 | host=https://ww...
#> 88 6 tags: changesets_count=60 | comment=con uno basta | created_by=iD 2.25.2 | hos...
#> 89 6 tags: changesets_count=59 | comment=9 | created_by=iD 2.25.2 | host=https://ww...
#> 90 6 tags: changesets_count=58 | comment=10 | created_by=iD 2.25.2 | host=https://w...
#> 91 6 tags: changesets_count=57 | comment=11 | created_by=iD 2.25.2 | host=https://w...
#> 92 6 tags: changesets_count=56 | comment=18 | created_by=iD 2.25.2 | host=https://w...
#> 93 6 tags: changesets_count=55 | comment=10 | created_by=iD 2.25.2 | host=https://w...
#> 94 6 tags: changesets_count=54 | comment=12 | created_by=iD 2.25.2 | host=https://w...
#> 95 6 tags: changesets_count=53 | comment=A ver, subnormal, en español es JUNUQUERA ...
#> 96 8 tags: changesets_count=52 | comment=10 | created_by=iD 2.25.2 | host=https://w...
#> 97 6 tags: changesets_count=51 | comment=ssbm | created_by=iD 2.25.2 | host=https:/...
#> 98 6 tags: changesets_count=50 | comment=11 | created_by=iD 2.25.2 | host=https://w...
#> 99 6 tags: changesets_count=49 | comment=no hay casa (viajo a menudo) | created_by=...
#> 100 6 tags: changesets_count=48 | comment=ssbm | created_by=iD 2.25.2 | host=https:/...