Description Usage Arguments Value See Also Examples
get_geo_box
retrieves all geographic entities in
Wikidata that fall between a bounding box between two existing items
with geographic attributes (usually cities).
1 2 3 4 5 6 7 8 | get_geo_box(
first_city_code,
first_corner,
second_city_code,
second_corner,
language = "en",
...
)
|
first_city_code |
a Wikidata item, or series of items, to use for one corner of the bounding box. |
first_corner |
the direction of |
second_city_code |
a Wikidata item, or series of items, to use for one corner of the bounding box. |
second_corner |
the direction of |
language |
the two-letter language code to use for the name of the item. "en" by default. |
\dots |
further arguments to pass to httr's GET. |
a data.frame of 5 columns:
item the Wikidata identifier of each object associated with
entity
.
name the name of the item, if available, in the requested language. If it
is not available, NA
will be returned instead.
latitude the latitude of item
longitude the longitude of item
entity the entity the item is associated with (necessary for multi-entity queries).
get_geo_entity
for using an unrestricted search or simple radius,
rather than a bounding box.
1 2 3 4 5 6 | # Simple bounding box
bruges_box <- get_geo_box("Q12988", "NorthEast", "Q184287", "SouthWest")
# Custom language
bruges_box_fr <- get_geo_box("Q12988", "NorthEast", "Q184287", "SouthWest",
language = "fr")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.