Skip to content

Commit

Permalink
ASTAP use downsampling=0 for automatic downsampling
Browse files Browse the repository at this point in the history
  • Loading branch information
pchev committed Sep 18, 2019
1 parent 00d4547 commit fbd1312
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/pu_main.pas
Expand Up @@ -6087,8 +6087,8 @@ procedure Tf_main.MenuOptionsClick(Sender: TObject);
{$endif}
{$endif}
);
f_option.ASTAPSearchRadius.Value:=config.GetValue('/Astrometry/ASTAPSearchRadius',5);
f_option.ASTAPdownsample.Value:=config.GetValue('/Astrometry/ASTAPdownsample',2);
f_option.ASTAPSearchRadius.Value:=config.GetValue('/Astrometry/ASTAPSearchRadius',30);
f_option.ASTAPdownsample.Value:=config.GetValue('/Astrometry/ASTAPdownsample',2);{0 is automatic selection but gives an runtime error in old ASTAP versions. Make 0 default after 9/2020}
f_option.PrecSlewBox.ItemIndex:=config.GetValue('/PrecSlew/Method',0);
f_option.SlewPrec.Value:=config.GetValue('/PrecSlew/Precision',5.0);
f_option.SlewRetry.Value:=config.GetValue('/PrecSlew/Retry',3);
Expand Down
2 changes: 1 addition & 1 deletion src/pu_options.lfm
Expand Up @@ -3155,7 +3155,7 @@ object f_option: Tf_option
Width = 102
Constraints.MaxHeight = 28
MaxValue = 4
MinValue = 1
MinValue = 0
ParentFont = False
TabOrder = 2
Value = 1
Expand Down

0 comments on commit fbd1312

Please sign in to comment.