IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 21, 2011, 10:59:14 AM (15 years ago)
Author:
bills
Message:

optionally use a separate list of stars with different magnitude range for grid search. This is used to
work around the bright star astrometry problem that fouls up the STS astrometry.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psastro/src/psastroRemoveClumps.c

    r26275 r31333  
    6161                psMetadataAdd (readout->analysis, PS_LIST_TAIL, "PSASTRO.RAWSTARS.SUBSET", PS_DATA_ARRAY, "astrometry objects", subset);
    6262                psFree (subset);
     63
     64                psArray *gridstars = psMetadataLookupPtr(&status, readout->analysis, "PSASTRO.GRID.RAWSTARS");
     65                if ((gridstars == rawstars) || (gridstars == NULL)) { continue; }
     66
     67                psArray *gridstars_subset = psastroRemoveClumpsIterate(gridstars, 150, 3);
     68                psMetadataAdd (readout->analysis, PS_LIST_TAIL, "PSASTRO.GRID.RAWSTARS.SUBSET", PS_DATA_ARRAY, "astrometry objects", gridstars_subset);
     69                psFree (gridstars_subset);
    6370            }
    6471        }
Note: See TracChangeset for help on using the changeset viewer.