Details
-
Type:
Improvement
-
Status: Done
-
Resolution: Done
-
Fix Version/s: None
-
Component/s: afw, ip_isr, jointcal, meas_base, meas_mosaic, obs_sdss, pipe_tasks
-
Labels:
-
Story Points:5
-
Epic Link:
-
Sprint:AP S18-2, AP S18-3
-
Team:Alert Production
Description
Implement RFC-392: make Detector.transform and Camera.transform support lists of points (or single points) and delete the CameraPoint class. Removing the CameraPoint class also requires a minor change to Camera.findDetectors and findDetectorsList.
Attachments
Issue Links
- is triggered by
-
RFC-392 Make Camera.transform and Detector.transform support lists of points and remove CameraPoint
- Implemented
Everywhere there's a getTransform(fromSys, toSys) method, there needs to be an applyTransform(points, fromSys, toSys) method (or similar name) that does getTransform(fromSys, toSys).applyForward(points) because most of the times you call getTransform you want to applyForward immediately after.