Tagged Questions
1
vote
0answers
26 views
Why does polygon.intersection(complex_linestring) split the linestring and mess up Z?
I have a complex (self crossing) line with Z values which I'd like to truncate to the area inside a box. The problem is Shapely splits the line into simple (non-crossing) sections and the Z value at ...
2
votes
2answers
176 views
Checking if a point is in a circle
I'm using shapely to check if a point is in a polygon, but I also need to check if a point is in a circle. Checking the docs, I don't see how do that...
Maybe I could create a circle?
circle = ...
4
votes
1answer
395 views
Wrap GEOS functionality into python
I've been looking on how to get GEOSExtractLine available in python.
I looked into Shapely source to if it was available for it, but it's not. I'm trying to wrap this funcionality into Django, much ...
