Details
-
Type:
Story
-
Status: Done
-
Resolution: Done
-
Fix Version/s: None
-
Component/s: obs_subaru
-
Labels:
-
Team:Data Release Production
Description
Recently, while processing MADCASH (observations of local dwarf galaxies), I noticed a vast improvement in astrometric matching when I set:
calibrate.astrometry.matcher.numBrightStars=150 calibrate.photoCal.matcher.n
|
umBrightStars=150
|
We should make these the default for HSC.
Attachments
Issue Links
- blocks
-
DM-9870 Release hscPipe 5.0-beta1
- Done
Chris Morrison [X], would you mind giving this simple change a quick look, as I believe you grok this stuff.
price@pap-laptop:~/LSST/obs_subaru (tickets/DM-9874=) $ git sub-patch
commit e378a39f4967f0b8567b335288e9f621115e1118
Author: Paul Price <price@astro.princeton.edu>
Date: Mon Mar 20 13:00:34 2017 -0400
config: set matcher.numBrightStars=150
This greatly increases the stability of the matcher, at least for
MADCASH dwarf galaxy fields. There's also evidence from UW astrometry
experiments that it helps in general.
diff --git a/config/processCcd.py b/config/processCcd.py
index a1a7d2e..2d9755d 100644
--- a/config/processCcd.py
+++ b/config/processCcd.py
@@ -34,6 +34,10 @@ for refObjLoader in (config.calibrate.astromRefObjLoader,
):
refObjLoader.load(os.path.join(getPackageDir("obs_subaru"), "config", "filterMap.py"))
+# Better astrometry matching
+config.calibrate.astrometry.matcher.numBrightStars = 150
+config.calibrate.photoCal.matcher.numBrightStars = 150
+
# Set to match defaults curretnly used in HSC production runs (e.g. S15B)
config.charImage.catalogCalculation.plugins['base_ClassificationExtendedness'].fluxRatio = 0.95
config.calibrate.catalogCalculation.plugins['base_ClassificationExtendedness'].fluxRatio = 0.95