Skip to content

Commit

Permalink
Adding downsample 0 for ASTAP
Browse files Browse the repository at this point in the history
  • Loading branch information
rlancaste committed Dec 30, 2020
1 parent e1200ec commit 8a8597c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions stellarsolver/externalsextractorsolver.cpp
Expand Up @@ -707,6 +707,8 @@ int ExternalSextractorSolver::runExternalASTAPSolver()
solverArgs << "-wcs";
if(m_ActiveParameters.downsample > 1)
solverArgs << "-z" << QString::number(m_ActiveParameters.downsample);
else
solverArgs << "-z" << "0";
if(m_UseScale)
{
double scalemid = (scalehi + scalelo) / 2;
Expand Down

0 comments on commit 8a8597c

Please sign in to comment.