These functions are still valid, but have been superseded by more recent versions. They were designed to be used to supply arguments within functions from the atlas_ family. Instead you should use piped functions for this same functionality.
Usage
galah_apply_profile(...)
galah_filter(...)
galah_geolocate(..., type = c("polygon", "bbox", "radius"))
galah_polygon(...)
galah_bbox(...)
galah_radius(...)
galah_group_by(...)
galah_identify(...)
galah_select(..., group = NULL)Arguments
- ...
Arguments passed to the function in question, usually (but not always) using non-standard evaluation.
- type
string: one of"polygon","bbox"or"radius". Defaults to"polygon". Iftype = "polygon", a multipolygon will be built viageolocate_polygon(). Iftype = "bbox", a multipolygon will be built viageolocate_bbox(). The multipolygon is used to narrow a query to the ALA.- group
string: (optional) name of one or more column groups to include. Valid options are"basic","event""taxonomy","media"and"assertions".
Details
Replacements are as follows:
apply_profile()instead ofgalah_apply_profile()filter()instead ofgalah_filter()geolocate()instead ofgalah_geolocate()geolocate_polygon()instead ofgalah_polygon()geolocate_bbox()instead ofgalah_bbox()geolocate_radius()instead ofgalah_radius()group_by()instead ofgalah_group_by()identify()instead ofgalah_identify()select()instead ofgalah_select()
