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
|
Functions | |
def | extraMsg (msg) |
def | assertAnglesAlmostEqual (testCase, ang0, ang1, maxDiff=0.001 *arcseconds, ignoreWrap=True, msg="Angles differ") |
def | assertPairsAlmostEqual (testCase, pair0, pair1, maxDiff=1e-7, msg="Pairs differ") |
def | assertPairListsAlmostEqual (testCase, list0, list1, maxDiff=1e-7, msg=None) |
def | assertSpherePointsAlmostEqual (testCase, sp0, sp1, maxSep=0.001 *arcseconds, msg="") |
def | assertSpherePointListsAlmostEqual (testCase, splist0, splist1, maxSep=0.001 *arcseconds, msg=None) |
def | assertBoxesAlmostEqual (testCase, box0, box1, maxDiff=1e-7, msg="Boxes differ") |
def lsst.geom.testUtils.assertAnglesAlmostEqual | ( | testCase, | |
ang0, | |||
ang1, | |||
maxDiff = 0.001*arcseconds , |
|||
ignoreWrap = True , |
|||
msg = "Angles differ" |
|||
) |
Assert that two `~lsst.geom.Angle`\ s are almost equal, ignoring wrap differences by default. If both arguments are NaN the assert will pass. If one of the arguments is NaN but the other is not the assert will fail. Parameters ---------- testCase : `unittest.TestCase` test case the test is part of; an object supporting one method: fail(self, msgStr) ang0 : `lsst.geom.Angle` angle 0 ang1 : `lsst.geom.Angle` angle 1 maxDiff : `lsst.geom.Angle` maximum difference between the two angles ignoreWrap : `bool` ignore wrap when comparing the angles? - if True then wrap is ignored, e.g. 0 and 360 degrees are considered equal - if False then wrap matters, e.g. 0 and 360 degrees are considered different msg : `str` exception message prefix; details of the error are appended after ": " Raises ------ AssertionError Raised if the difference is greater than ``maxDiff``
Definition at line 47 of file testUtils.py.
def lsst.geom.testUtils.assertBoxesAlmostEqual | ( | testCase, | |
box0, | |||
box1, | |||
maxDiff = 1e-7 , |
|||
msg = "Boxes differ" |
|||
) |
Assert that two boxes (`~lsst.geom.Box2D` or `~lsst.geom.Box2I`) are almost equal Parameters ---------- testCase : `unittest.TestCase` test case the test is part of; an object supporting one method: fail(self, msgStr) box0 : `lsst.geom.Box2D` or `lsst.geom.Box2I` box 0 box1 : `lsst.geom.Box2D` or `lsst.geom.Box2I` box 1 maxDiff : `float` maximum radial separation between the min points and max points msg : `str` exception message prefix; details of the error are appended after ": " Raises ------ AssertionError Raised if the radial difference of the min points or max points is greater than maxDiff Notes ----- .. warning:: Does not compare types, just compares values.
Definition at line 248 of file testUtils.py.
def lsst.geom.testUtils.assertPairListsAlmostEqual | ( | testCase, | |
list0, | |||
list1, | |||
maxDiff = 1e-7 , |
|||
msg = None |
|||
) |
Assert that two lists of Cartesian points are almost equal Each point can be any indexable pair of two floats, including Point2D or Extent2D, a list or a tuple. Parameters ---------- testCase : `unittest.TestCase` test case the test is part of; an object supporting one method: fail(self, msgStr) list0 : `list` of pairs of `float` list of pairs 0 list1 : `list` of pairs of `float` list of pairs 1 maxDiff : `float` maximum radial separation between the two points msg : `str` additional information for the error message; appended after ": " Raises ------ AssertionError Raised if the radial difference is greater than ``maxDiff`` Notes ----- .. warning:: Does not compare types, just values.
Definition at line 139 of file testUtils.py.
def lsst.geom.testUtils.assertPairsAlmostEqual | ( | testCase, | |
pair0, | |||
pair1, | |||
maxDiff = 1e-7 , |
|||
msg = "Pairs differ" |
|||
) |
Assert that two Cartesian points are almost equal. Each point can be any indexable pair of two floats, including Point2D or Extent2D, a list or a tuple. Parameters ---------- testCase : `unittest.TestCase` test case the test is part of; an object supporting one method: fail(self, msgStr) pair0 : pair of `float` pair 0 pair1 : pair of `floats` pair 1 maxDiff : `float` maximum radial separation between the two points msg : `str` exception message prefix; details of the error are appended after ": " Raises ------ AssertionError Raised if the radial difference is greater than ``maxDiff`` Notes ----- .. warning:: Does not compare types, just compares values.
Definition at line 96 of file testUtils.py.
def lsst.geom.testUtils.assertSpherePointListsAlmostEqual | ( | testCase, | |
splist0, | |||
splist1, | |||
maxSep = 0.001*arcseconds , |
|||
msg = None |
|||
) |
Assert that two lists of `~lsst.geom.SpherePoint`\ s are almost equal Parameters ---------- testCase : `unittest.TestCase` test case the test is part of; an object supporting one method: fail(self, msgStr) splist0 : `list` of `lsst.geom.SpherePoint` list of SpherePoints 0 splist1 : `list` of `lsst.geom.SpherePoint` list of SpherePoints 1 maxSep : `lsst.geom.Angle` maximum separation msg : `str` exception message prefix; details of the error are appended after ": " Raises ------ AssertionError The SpherePoint lists are not equal.
Definition at line 214 of file testUtils.py.
def lsst.geom.testUtils.assertSpherePointsAlmostEqual | ( | testCase, | |
sp0, | |||
sp1, | |||
maxSep = 0.001*arcseconds , |
|||
msg = "" |
|||
) |
Assert that two `~lsst.geom.SpherePoint`\ s are almost equal Parameters ---------- testCase : `unittest.TestCase` test case the test is part of; an object supporting one method: fail(self, msgStr) sp0 : `lsst.geom.SpherePoint` SpherePoint 0 sp1 : `lsst.geom.SpherePoint` SpherePoint 1 maxSep : `lsst.geom.Angle` maximum separation msg : `str` extra information to be printed with any error message Raises ------ AssertionError The SpherePoints are not equal.
Definition at line 186 of file testUtils.py.
def lsst.geom.testUtils.extraMsg | ( | msg | ) |