Expands compacted cells to a target resolution. All cells in the output share the same resolution.
Details
H3 backend: Uses the vendored H3 uncompactCells function.
ISEA backend (aperture 7, Z7 index): Appends digits 0-6 to expand each cell to its 7 children, repeating until the target resolution is reached.
See also
hex_compact() for the inverse operation
Examples
# \donttest{
g <- hex_grid(resolution = 3, type = "h3")
parent <- "832830fffffffff"
hex_uncompact(parent, g, target_resolution = 4L)
# }