Skip to content
This repository was archived by the owner on Feb 2, 2025. It is now read-only.

Commit 35b86f5

Browse files
committed
parseImage.py remove handleAUTEL debug print
1 parent 19f3981 commit 35b86f5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/parseImage.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ def parseImage():
251251
file_object.write(targetMGRS + "\n")
252252
file_object.write(targetMGRS10m + "\n")
253253
file_object.write(targetMGRS100m + "\n")
254-
file_object.write("# format: lat, lon, alt, dist, MGRS 1m, MGRS 10m, MGRS 100m")
254+
file_object.write("# format: lat, lon, alt, dist, time, MGRS 1m, MGRS 10m, MGRS 100m\n")
255255
if make == "AUTEL ROBOTICS":
256256
file_object.write(f'# CAUTION: in-accuracies have been observed with Autel drones. This result is from a "{model}" drone')
257257

@@ -551,8 +551,8 @@ def handleAUTEL(xmp_str, exifData):
551551
if y is None or x is None or z is None or azimuth is None or theta is None:
552552
return None
553553
else:
554-
# debug printout
555-
print(f'y: "{y}" x: "{x}" z: "{z}" azimuth: "{azimuth}" theta: "{theta}"')
554+
# # debug printout
555+
# print(f'y: "{y}" x: "{x}" z: "{z}" azimuth: "{azimuth}" theta: "{theta}"')
556556
return (y, x, z, azimuth, theta)
557557

558558

0 commit comments

Comments
 (0)