Skip to content

Commit

Permalink
parseImage.py remove handleAUTEL debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrupczak3 committed Jun 11, 2022
1 parent 19f3981 commit 35b86f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/parseImage.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def parseImage():
file_object.write(targetMGRS + "\n")
file_object.write(targetMGRS10m + "\n")
file_object.write(targetMGRS100m + "\n")
file_object.write("# format: lat, lon, alt, dist, MGRS 1m, MGRS 10m, MGRS 100m")
file_object.write("# format: lat, lon, alt, dist, time, MGRS 1m, MGRS 10m, MGRS 100m\n")
if make == "AUTEL ROBOTICS":
file_object.write(f'# CAUTION: in-accuracies have been observed with Autel drones. This result is from a "{model}" drone')

Expand Down Expand Up @@ -551,8 +551,8 @@ def handleAUTEL(xmp_str, exifData):
if y is None or x is None or z is None or azimuth is None or theta is None:
return None
else:
# debug printout
print(f'y: "{y}" x: "{x}" z: "{z}" azimuth: "{azimuth}" theta: "{theta}"')
# # debug printout
# print(f'y: "{y}" x: "{x}" z: "{z}" azimuth: "{azimuth}" theta: "{theta}"')
return (y, x, z, azimuth, theta)


Expand Down

0 comments on commit 35b86f5

Please sign in to comment.