Closed BG-AIMS closed 1 month ago
Thanks for the issue! This looks like it was an oversight when I wrote buffer
, since it calls out to LibGEOS which doesn't have the concept of a CRS.
For now, you can simply call tuples
on the result and attach a CRS that way:
polygon2 = GO.tuples(GO.buffer(polygon1, 1); crs = GI.crs(polygon1))
but we should amend buffer
to perform this itself.
The CRS attached to
polygon1
appears to be removed in the resulting polygon fromGO.buffer(polygon1, x)
. Is there a way to attach a CRS back to the resulting polygon?