close polygons in svg
This commit is contained in:
parent
2f90a79092
commit
05982b2364
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ class SVGImage:
|
||||||
# scale and move geometry geometry and create svg code for it
|
# scale and move geometry geometry and create svg code for it
|
||||||
if isinstance(geom, Polygon):
|
if isinstance(geom, Polygon):
|
||||||
return ('<path d="' +
|
return ('<path d="' +
|
||||||
' '.join((('M %.1f %.1f L'+(' %.1f %.1f'*(len(ring.coords)-1))) %
|
' '.join((('M %.1f %.1f L'+(' %.1f %.1f'*(len(ring.coords)-1))+' z') %
|
||||||
tuple((np.array(ring)*self.np_scale+self.np_offset).flatten()))
|
tuple((np.array(ring)*self.np_scale+self.np_offset).flatten()))
|
||||||
for ring in chain((geom.exterior,), geom.interiors))
|
for ring in chain((geom.exterior,), geom.interiors))
|
||||||
+ '"/>').replace('.0 ', ' ')
|
+ '"/>').replace('.0 ', ' ')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue