-
I'm surely overlooking something simple and obvious here, but I can't seem to get accurate measurements when I switch from Polygon to LineString source input to quadtree_point_to_nearest_linestring. The only changes made to get it to run were using part_offset as opposed to ring_offset, and using .lines instead of .polygons to create the LineStringGeoColumnAccessor.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @squisha ! In your script, the input of Additionally, |
Beta Was this translation helpful? Give feedback.
Hi @squisha ! In your script, the input of
quadtree_on_points
should accept bounding boxes of the points, not the lines, so I would replace the inputs fromcline_lines.x.min()
tocgdf.geometry.points.x.min()
, and the same for the rest of the inputs.Additionally,
boundaries
series is actually the same ascline.geometry
, so you can replace all of its usage without having create it.