Skip to content
New issue

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

st_join renames geom column to geometry if x is st_sf with only a st_sfc col #2327

Merged
merged 1 commit into from
Feb 9, 2024

Commits on Feb 5, 2024

  1. st_join renames geom column to 'geometry' if x is st_sf with only a s…

    …t_sfc col.
    
    z <- st_sf(pid=5, geom=st_sfc(st_polygon(list(matrix(c(0,0,4,0,4,4,0,4,0,0),ncol=2, byrow=T)))))
    x <- st_sf(id=1:2, geom=st_sfc(st_point(1:2), st_point(2:3)))
    st_join(x[,'geom'], z)
    faridcher authored Feb 5, 2024
    Configuration menu
    Copy the full SHA
    990ede2 View commit details
    Browse the repository at this point in the history