LSSTApplications  18.0.0+106,18.0.0+50,19.0.0,19.0.0+1,19.0.0+10,19.0.0+11,19.0.0+13,19.0.0+17,19.0.0+2,19.0.0-1-g20d9b18+6,19.0.0-1-g425ff20,19.0.0-1-g5549ca4,19.0.0-1-g580fafe+6,19.0.0-1-g6fe20d0+1,19.0.0-1-g7011481+9,19.0.0-1-g8c57eb9+6,19.0.0-1-gb5175dc+11,19.0.0-1-gdc0e4a7+9,19.0.0-1-ge272bc4+6,19.0.0-1-ge3aa853,19.0.0-10-g448f008b,19.0.0-12-g6990b2c,19.0.0-2-g0d9f9cd+11,19.0.0-2-g3d9e4fb2+11,19.0.0-2-g5037de4,19.0.0-2-gb96a1c4+3,19.0.0-2-gd955cfd+15,19.0.0-3-g2d13df8,19.0.0-3-g6f3c7dc,19.0.0-4-g725f80e+11,19.0.0-4-ga671dab3b+1,19.0.0-4-gad373c5+3,19.0.0-5-ga2acb9c+2,19.0.0-5-gfe96e6c+2,w.2020.01
LSSTDataManagementBasePackage
camera_tests.py
Go to the documentation of this file.
1 # This file is part of obs_base.
2 #
3 # Developed for the LSST Data Management System.
4 # This product includes software developed by the LSST Project
5 # (https://www.lsst.org).
6 # See the COPYRIGHT file at the top-level directory of this distribution
7 # for details of code ownership.
8 #
9 # This program is free software: you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation, either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program. If not, see <https://www.gnu.org/licenses/>.
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