Learn R Programming

geomultistar (version 1.2.2)

get_empty_geoinstances: Get empty instances of a geographic attribute

Description

Gets the instances of the given geographic attribute that do not have a geometry associated with them.

Usage

get_empty_geoinstances(gms, dimension = NULL, attribute = NULL)

# S3 method for geomultistar get_empty_geoinstances(gms, dimension = NULL, attribute = NULL)

Value

A sf object.

Arguments

gms

A geomultistar object.

dimension

A string, dimension name.

attribute

A string, attribute name.

See Also

Other geo functions: define_geoattribute(), geomultistar(), run_geoquery()

Examples

Run this code

gms <- geomultistar(ms = ms_mrs, geodimension = "where") |>
  define_geoattribute(
    attribute = "city",
    from_layer = usa_cities,
    by = c("city" = "city", "state" = "state")
  )

  empty <- gms |>
     get_empty_geoinstances(attribute = "city")

Run the code above in your browser using DataLab