LSSTApplications  17.0+124,17.0+14,17.0+73,18.0.0+37,18.0.0+80,18.0.0-4-g68ffd23+4,18.1.0-1-g0001055+12,18.1.0-1-g03d53ef+5,18.1.0-1-g1349e88+55,18.1.0-1-g2505f39+44,18.1.0-1-g5315e5e+4,18.1.0-1-g5e4b7ea+14,18.1.0-1-g7e8fceb+4,18.1.0-1-g85f8cd4+48,18.1.0-1-g8ff0b9f+4,18.1.0-1-ga2c679d+1,18.1.0-1-gd55f500+35,18.1.0-10-gb58edde+2,18.1.0-11-g0997b02+4,18.1.0-13-gfe4edf0b+12,18.1.0-14-g259bd21+21,18.1.0-19-gdb69f3f+2,18.1.0-2-g5f9922c+24,18.1.0-2-gd3b74e5+11,18.1.0-2-gfbf3545+32,18.1.0-26-g728bddb4+5,18.1.0-27-g6ff7ca9+2,18.1.0-3-g52aa583+25,18.1.0-3-g8ea57af+9,18.1.0-3-gb69f684+42,18.1.0-3-gfcaddf3+6,18.1.0-32-gd8786685a,18.1.0-4-gf3f9b77+6,18.1.0-5-g1dd662b+2,18.1.0-5-g6dbcb01+41,18.1.0-6-gae77429+3,18.1.0-7-g9d75d83+9,18.1.0-7-gae09a6d+30,18.1.0-9-gc381ef5+4,w.2019.45
LSSTDataManagementBasePackage
camera_tests.py
Go to the documentation of this file.
1 #
2 # LSST Data Management System
3 # Copyright 2016 LSST Corporation.
4 #
5 # This product includes software developed by the
6 # LSST Project (http://www.lsst.org/).
7 #
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the LSST License Statement and
19 # the GNU General Public License along with this program. If not,
20 # see <http://www.lsstcorp.org/LegalNotices/>.
21 #
22 import abc
23 import collections
24 import math
25 
26 import lsst.geom
27 from lsst.afw.cameraGeom import FOCAL_PLANE, FIELD_ANGLE
28 
29 __all__ = ["CameraTests"]
30 
31 
32 class CameraTests(metaclass=abc.ABCMeta):
33  """
34  Tests that the butler returns a useable Camera.
35 
36  In the subclasses's setUp():
37  * Call setUp_camera() to fill in required parameters.
38  """
39 
40  def setUp_camera(self,
41  camera_name=None,
42  n_detectors=None,
43  first_detector_name=None,
44  plate_scale=None,
45  ):
46  """
47  Set up the necessary variables for camera tests.
48 
49  Parameters
50  ----------
51 
52  camera_name : `str`
53  name of this camera
54  n_detectors : `int`
55  number of detectors in this camera
56  first_detector_name : `str`
57  name of the first detector in this camera
58  plate_scale : `lsst.geom.Angle`
59  plate scale at center of focal plane, as angle-on-sky/mm
60  """
61  fields = ['camera_name',
62  'n_detectors',
63  'first_detector_name',
64  'plate_scale',
65  ]
66  CameraData = collections.namedtuple("CameraData", fields)
67  self.camera_data = CameraData(camera_name=camera_name,
68  n_detectors=n_detectors,
69  first_detector_name=first_detector_name,
70  plate_scale=plate_scale,
71  )
72 
73  def test_iterable(self):
74  """Simplest camera test: can we get a Camera instance, and does iterating return Detectors?"""
75  camera = self.butler.get('camera', immediate=True)
76  self.assertIsInstance(camera, lsst.afw.cameraGeom.Camera)
77  for detector in camera:
78  msg = "Failed for detector={}".format(detector)
79  self.assertIsInstance(detector, lsst.afw.cameraGeom.Detector, msg=msg)
80 
81  def test_camera_butler(self):
82  """Check that the butler returns the right type of camera."""
83  camera = self.butler.get('camera', immediate=True)
84  self.assertEqual(camera.getName(), self.camera_data.camera_name)
85  self.assertEqual(len(camera), self.camera_data.n_detectors)
86  self.assertEqual(next(iter(camera)).getName(), self.camera_data.first_detector_name)
87 
88  def test_plate_scale(self):
89  """Check the plate scale at center of focal plane
90 
91  Check plate_scale using the FOCAL_PLANE to FIELD_ANGLE transform
92  from the camera.
93  """
94  plate_scale = self.camera_data.plate_scale
95  self.assertIsNotNone(plate_scale)
96  camera = self.butler.get('camera', immediate=True)
97  focalPlaneToFieldAngle = camera.getTransformMap().getTransform(FOCAL_PLANE, FIELD_ANGLE)
98  focalPlaneRadiusMm = 0.001 # an offset small enough to be in the linear regime
99  for offsetAngleRad in (0.0, 0.65, 1.3): # direction of offset; a few arbitrary angles
100  cosAng = math.cos(offsetAngleRad)
101  sinAng = math.sin(offsetAngleRad)
102  fieldAngleRadians = focalPlaneToFieldAngle.applyForward(
103  lsst.geom.Point2D(cosAng * focalPlaneRadiusMm, sinAng * focalPlaneRadiusMm))
104  fieldAngleRadius = math.hypot(*fieldAngleRadians) * lsst.geom.radians
105  measuredScale1 = fieldAngleRadius / focalPlaneRadiusMm
106  self.assertAnglesAlmostEqual(measuredScale1, plate_scale)
107 
108  focalPlanePos = focalPlaneToFieldAngle.applyInverse(
109  lsst.geom.Point2D(fieldAngleRadius.asRadians() * cosAng,
110  fieldAngleRadius.asRadians() * sinAng))
111  focalPlaneRadiusMm2 = math.hypot(*focalPlanePos)
112  measureScale2 = fieldAngleRadius / focalPlaneRadiusMm2
113  self.assertAnglesAlmostEqual(measureScale2, plate_scale)
def format(config, name=None, writeSourceLine=True, prefix="", verbose=False)
Definition: history.py:174
def setUp_camera(self, camera_name=None, n_detectors=None, first_detector_name=None, plate_scale=None)
Definition: camera_tests.py:45
An immutable representation of a camera.
Definition: Camera.h:43
A representation of a detector in a mosaic camera.
Definition: Detector.h:181