Skip to content
Snippets Groups Projects
Commit d39838b2 authored by Julian Steinmetz's avatar Julian Steinmetz
Browse files

Changed output type from of pixel coordinates from integer to float.

parent 792246ea
No related branches found
No related tags found
No related merge requests found
......@@ -119,7 +119,7 @@ def threadMain(q_in, q_out):
diff = dt - dt.replace(hour=0, minute=0, second=0, microsecond=0)
seconds = diff.seconds + diff.microseconds / 1e6
dateStr = "%i:%02i:%02i" % (dt.year, dt.month, dt.day)
output = "%20s\t%9.3f\t%10s\t%4i\t%4i\t%4i\t%8.3f" % (
output = "%20s\t%9.3f\t%10s\t%8.1f\t%8.1f\t%8.1f\t%8.3f" % (
filename, seconds, dateStr, x_origin, pos[1], pos[0], (pos[1] - x_origin) * scale)
# filename s yyyy:mm:dd x1 x2 y length
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment