remove trailing zeros

This commit is contained in:
Laura Klünder 2017-10-20 01:59:53 +02:00
parent ba068f5c93
commit e320e5d35c

View file

@ -138,12 +138,12 @@ class SVGImage:
' '.join(('M %.1f %.1f L %s z' % (coords[0][0], coords[0][1],
' '.join(('%.1f %.1f' % (c[0], c[1])) for c in coords[1:])))
for coords in chain((geom.exterior.coords,), (ring.coords for ring in geom.interiors)))
+ '"/>')
+ '"/>').replace('.0 ', ' ')
if isinstance(geom, LineString):
return ('<path d="' +
' '.join('M %.1f %.1f L %s' % (geom.coords[0][0], geom.coords[0][1],
' '.join(('%.1f %.1f' % (c[0], c[1])) for c in geom.coords[1:])))
+ '"/>')
' '.join(('%.1f %.1f' % (c[0], c[1])) for c in geom.coords[1:])))
+ '"/>').replace('.0 ', ' ')
try:
geoms = geom.geoms
except AttributeError: