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
I've been waiting for >15min, still not done, all data are in, it's a list of >15,000 elements, not that big.
The culprit is the do.call(rbind,) approach for large list of sf objects see r-spatial/sf#798. I'm working on a workaround, basically I'll delay the creation of sf object as much as possible.
The text was updated successfully, but these errors were encountered:
Ok, in this case, actually we can avoid creating a sf object for nodes.
Not even sure it makes sense to have several sf in mgNetwork, better having a sf object for network and a dataframe for the nodes associated. What do you think @SteveViss ?
reprex:
get_network_by_id(19)
I've been waiting for >15min, still not done, all data are in, it's a list of >15,000 elements, not that big.
The culprit is the
do.call(rbind,)
approach for large list of sf objects see r-spatial/sf#798. I'm working on a workaround, basically I'll delay the creation of sf object as much as possible.The text was updated successfully, but these errors were encountered: