IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 39669


Ignore:
Timestamp:
Sep 4, 2016, 10:31:18 AM (10 years ago)
Author:
eugene
Message:

do a better job of grabbing the images near the pole when repairing the stack IDs

Location:
trunk/Ohana/src/relastro/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/relastro/src/StackImageMaps.c

    r39619 r39669  
    8787  // we have the stack centers; find all stacks within 0.3 degrees of this point
    8888  Rstk = ohana_normalize_angle (Rstk);
    89   double dD = 0.3;
     89  double dD = 0.4;
    9090  double dR = dD / cos(RAD_DEG*Dstk);
    9191  double Rmin = Rstk - dR;
     
    9393  double Dmin = Dstk - dD;
    9494  double Dmax = Dstk + dD;
     95
     96  // for the north pole, just test the whole circle
     97  if (Dstk > 88) {
     98    Rmin = 0.0;
     99    Rmax = 360.0;
     100  }
    95101
    96102  double dPosMin = NAN;
  • trunk/Ohana/src/relastro/src/UpdateObjectOffsets.c

    r39623 r39669  
    324324    if (ExcludeBogus)    strextend (&command, "-exclude-bogus %f", ExcludeBogusRadius);
    325325   
     326    if (USE_ALL_IMAGES)      strextend (&command, "-use-all-images");
    326327    if (USE_FIXED_PIXCOORDS) strextend (&command, "-D USE_FIXED_PIXCOORDS 1");
    327328
Note: See TracChangeset for help on using the changeset viewer.