You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Providing a generalized solution initially strikes me as non-trivial ... And, I have admittedly not spent much time thinking through how to implement such a solution. But, I'd like to, eventually, see a solution that mirrors the tidyr::nest/tidyr::unnest cycle.
The text was updated successfully, but these errors were encountered:
In the call to st_sfc you don't specify crs or precision; if these were set before, they're lost (for this particular case, only crs gets lost, precision is default, zero)
Thanks to 2f5914d, there is now a method for
tidyr::nest()
. That, obviously, brings up the question of how to supporttidyr::unnest()
.Here's an example of
tidyr::nest()
in action withsf
objectsIn theory, we should be able to
meuse_sf %>% tidyr::unnest()
and get back our original ungrouped/unnestedsf
object. But,In order to get back to an
sf
object, we need toProviding a generalized solution initially strikes me as non-trivial ... And, I have admittedly not spent much time thinking through how to implement such a solution. But, I'd like to, eventually, see a solution that mirrors the
tidyr::nest
/tidyr::unnest
cycle.The text was updated successfully, but these errors were encountered: