Skip to content

Commit

Permalink
Fix KML export
Browse files Browse the repository at this point in the history
  • Loading branch information
EarToEarOak committed Sep 18, 2016
1 parent b55e5a4 commit cd06706
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -561,10 +561,10 @@ def export_kmz(filename, bounds, image):
handle.write('\t\t<viewBoundScale>0.75</viewBoundScale>\n')
handle.write('\t</Icon>\n')
handle.write('\t<LatLonBox>\n')
handle.write('\t\t<north>{}</north>\n'.format(bounds[3]))
handle.write('\t\t<south>{}</south>\n'.format(bounds[2]))
handle.write('\t\t<east>{}</east>\n'.format(bounds[1]))
handle.write('\t\t<west>{}</west>\n'.format(bounds[0]))
handle.write('\t\t<north>{}</north>\n'.format(bounds[1]))
handle.write('\t\t<south>{}</south>\n'.format(bounds[0]))
handle.write('\t\t<east>{}</east>\n'.format(bounds[3]))
handle.write('\t\t<west>{}</west>\n'.format(bounds[2]))
handle.write('\t</LatLonBox>\n')
handle.write('</GroundOverlay>\n')
handle.write('</kml>\n')
Expand Down
2 changes: 1 addition & 1 deletion src/version-timestamp
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1461343635
1474208729

0 comments on commit cd06706

Please sign in to comment.