(
dwg: svgwrite.Drawing, geom: shapely.geometry.Point, group: svgwrite.container.Group = None
)
| 68 | |
| 69 | |
| 70 | def insert_point( |
| 71 | dwg: svgwrite.Drawing, geom: shapely.geometry.Point, group: svgwrite.container.Group = None |
| 72 | ): |
| 73 | logger.debug("Adding %s", geom) |
| 74 | p = svgwrite.shapes.Circle(center=geom.coords[0][:2], r=0.5) |
| 75 | if group is not None: |
| 76 | group.add(p) |
| 77 | else: |
| 78 | dwg.add(p) |
| 79 | |
| 80 | |
| 81 | def insert_linestring( |
nothing calls this directly
no outgoing calls
no test coverage detected