We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ms_simplify() appears to be silently changing the name of the geometry column from X to geometry. See this reprex (using bcmaps):
ms_simplify()
bcmaps
library(sf) library(rmapshaper) library(bcmaps) simplified <- nr_regions() %>% ms_simplify() attr(simplified, "sf_column") [1] "geometry" attr(nr_regions(), "sf_column") [1] "SHAPE"
The text was updated successfully, but these errors were encountered:
Thanks for the report! Should be a relatively easy fix
Sorry, something went wrong.
Preserve name of geometry column for sf methods. Fixes #70
3d5cf2e
Successfully merging a pull request may close this issue.
ms_simplify()
appears to be silently changing the name of the geometry column from X to geometry. See this reprex (usingbcmaps
):The text was updated successfully, but these errors were encountered: