Details
-
Type:
Story
-
Status: Won't Fix
-
Resolution: Done
-
Fix Version/s: None
-
Component/s: afw
-
Labels:
-
Story Points:8
-
Epic Link:
-
Team:Alert Production
Description
Due to time constraints, Point2DList is originally being implemented as a C++-only class emulating STL lists. A python interface should be added when feasible.
Using pybind11, it would be relatively easy to make Point2DList behave similarly to a standard Python list; conversely, using swig to wrap the class's very C++-like interface would be difficult and is best avoided.
The final design for the LSST-facing WCS interface uses standard vectors of Point and SpherePoint, with conversions to and from lower-level types being implemented as part of
DM-8439. Therefore, this issue is no longer necessary.