Commit 063b336c by Corey Koval

Bug fix: Coordinate display order reversed

parent bb034acd
...@@ -488,7 +488,7 @@ def write_czml(best_point, all_the_points, ellipsedata): ...@@ -488,7 +488,7 @@ def write_czml(best_point, all_the_points, ellipsedata):
if len(best_point) > 0: if len(best_point) > 0:
for x in best_point: for x in best_point:
best_point_packets.append(Packet(id=str(x[0]) + ", " + str(x[1]), best_point_packets.append(Packet(id=str(x[1]) + ", " + str(x[0]),
point=best_point_properties, point=best_point_properties,
position={"cartographicDegrees": [ x[0], x[1], 15 ]})) position={"cartographicDegrees": [ x[0], x[1], 15 ]}))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment