Skip to contents

For each dimension, get a list of available geoattributes.

Usage

get_geoattributes(db)

# S3 method for star_database
get_geoattributes(db)

Arguments

db

A star_database object.

Value

A list of dimension geoattributes.

Examples


db <- mrs_db |>
  define_geoattribute(
    dimension = "where",
    attribute = "state",
    from_layer = us_layer_state,
    by = "STUSPS"
  )

attributes <- db |>
    get_geoattributes()