Open GoogleCodeExporter opened 9 years ago
Original comment by geospati...@gmail.com
on 17 Nov 2011 at 3:19
V1.2.0 fails to format according to size and decimal precision indicated by
field attributes:
At line 886 in shapefile.py:
value = str(value).rjust(size)
I've changed line 886 to (Python2.7+):
value = "{0:{1}.{2}f}".format(value, size, dec)
Original comment by wcart...@gmail.com
on 25 Oct 2013 at 3:12
Original issue reported on code.google.com by
lordv...@gmail.com
on 16 Nov 2011 at 11:08