Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Hossein Souri committed Nov 9, 2022
1 parent e0435cb commit d39802e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions GEOAkaze/GEOAkaze_mod.py
Original file line number Diff line number Diff line change
Expand Up @@ -731,8 +731,8 @@ def read_MSI(self,msifname):
# the file size is to prevent some bad/incomplete MSI images from
# getting involved
if file_size>15096676:
if ((p_master.intersects(p_slave)) and 100.0*(p_master.intersection(p_slave).area/p_slave.area)>self.msi_area_threshold) or
p_master.contains(p_slave):
if (((p_master.intersects(p_slave)) and 100.0*(p_master.intersection(p_slave).area/p_slave.area)>self.msi_area_threshold)
or (p_master.contains(p_slave))):
intersect_box.append(fname)
date_tmp = fname.split("_")
date_tmp = date_tmp[-2]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
readme = f.read()

setup(name='GEOAkaze',
version='0.2.4',
version='0.2.5',
description='Geolocation correction using Akaze',
long_description=readme,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit d39802e

Please sign in to comment.