Get related records based on their MRGID.
Arguments
- mrgid
(numeric) the MRGID (Marineregions Global Identifier) for the record of interest
- direction
(character) in which direction of the geographical hierarchy should the records be retrieved? Default:
upper
- type
(character) what kind of relations should the records retrieve have with the place? Default:
partof
- ...
curl options to be passed on to
httr::GET()
Author
Francois Michonneau [email protected]
Examples
if (FALSE) {
## geocode to get geospatial data for a place name
(tikehau <- mr_geo_code("tikehau"))
## then pass in in an MRGID as the first parameter
mr_place_relations(tikehau$MRGID)
## Set direction='both'
mr_place_relations(tikehau$MRGID, direction = "both")
## Set type to various other options
mr_place_relations(307, type = "adjacentto")
mr_place_relations(414, type = "similarto")
mr_place_relations(4177, type = "all")
}