Skip to content

Commit

Permalink
fix geo extent
Browse files Browse the repository at this point in the history
  • Loading branch information
tina5870 committed Jan 9, 2018
1 parent b152526 commit 608af72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ls_usgs_l2_prepare.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ def get_geo_ref(info):

return {
'ul': {'lat': float(ul_y), 'lon': float(ul_x)},
'ur': {'lat': float(lr_y), 'lon': float(ul_x)},
'll': {'lat': float(ul_y), 'lon': float(lr_x)},
'ur': {'lat': float(ul_y), 'lon': float(lr_x)},
'll': {'lat': float(lr_y), 'lon': float(ul_x)},
'lr': {'lat': float(lr_y), 'lon': float(lr_x)},
}

Expand Down

0 comments on commit 608af72

Please sign in to comment.