|
@@ -975,7 +975,7 @@ class GCP(wx.Frame):
|
|
|
are active for the selected transformation order
|
|
|
"""
|
|
|
if (self.GCPcount < 3 and self.gr_order == 1) or \
|
|
|
- (self.GCPcount < 7 and self.gr_order == 2) or \
|
|
|
+ (self.GCPcount < 6 and self.gr_order == 2) or \
|
|
|
(self.GCPcount < 10 and self.gr_order == 3):
|
|
|
if msg:
|
|
|
wx.MessageBox(parent=self,
|
|
@@ -983,7 +983,7 @@ class GCP(wx.Frame):
|
|
|
message=_('Insufficient points defined and active (checked) '
|
|
|
'for selected rectification method.\n'
|
|
|
'3+ points needed for 1st order,\n'
|
|
|
- '7+ points for 2nd order, and\n'
|
|
|
+ '6+ points for 2nd order, and\n'
|
|
|
'10+ points for 3rd order.'),
|
|
|
style=wx.ICON_INFORMATION | wx.ID_OK | wx.CENTRE)
|
|
|
return False
|