r-spatial / sf

Simple Features for R
https://r-spatial.github.io/sf/
Other
1.35k stars 299 forks source link

merge.sf renames geometry column name to 'geometry' arbitrarily #2328

Closed faridcher closed 9 months ago

faridcher commented 9 months ago
x <- st_sf(id=1:2, geom=st_sfc(st_point(1:2), st_point(2:3)))
y <- data.frame(id=2:3, name=letters[2:3])
merge(x,y) # renames geom to geometry
edzer commented 9 months ago

This results in many failures in GA; please check.