我在iPhoto中有成千上万的照片(由于来自不良数据源的导入),地理数据不好,所有经度都失去了减号。
在每个的情况下,我只想在经度上加一个减号。
我如何为每张照片设置经度= -longitude? p>
答案 0 :(得分:1)
此脚本将经度设置为负数。
tell application "iPhoto"
set tc to count photos
repeat with i from 1 to tc
try
tell photo i to if longitude > 0 then set longitude to -(longitude)
end try
end repeat
end tell