LSST Applications g0d33ba9806+97989ee787,g0fba68d861+57cab69267,g1e78f5e6d3+f1f8e160d9,g1fd858c14a+71413c3e43,g35bb328faa+fcb1d3bbc8,g4af146b050+0778a2a57a,g4d2262a081+e31b890e38,g4e0f332c67+53d227620f,g53246c7159+fcb1d3bbc8,g5a012ec0e7+e094618965,g60b5630c4e+97989ee787,g67b6fd64d1+98402a590a,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g87b7deb4dc+74fc793f15,g8852436030+d43d68859a,g89139ef638+98402a590a,g9125e01d80+fcb1d3bbc8,g94187f82dc+97989ee787,g989de1cb63+98402a590a,g9f33ca652e+8d6b0b7794,g9f7030ddb1+19b2dc913f,ga2b97cdc51+97989ee787,ga44b1db4f6+f1d430a4fa,gabe3b4be73+1e0a283bba,gabf8522325+fdcc45437b,gb1101e3267+d30395f664,gb58c049af0+f03b321e39,gb89ab40317+98402a590a,gcf25f946ba+d43d68859a,gd6cbbdb0b4+2800613beb,gd9a9a58781+fcb1d3bbc8,gde0f65d7ad+546cc78751,ge278dab8ac+c824a60960,ge410e46f29+98402a590a,gf67bdafdda+98402a590a,gfe06eef73a+2766dcde2b,w.2025.14
LSST Data Management Base Package
|
Classes | |
class | MappingTestCase |
class | ObjectTestCase |
Functions | |
makePolyMapCoeffs (nIn, nOut) | |
makeTwoWayPolyMap (nIn, nOut) | |
makeForwardPolyMap (nIn, nOut) | |
astshim.test.makeForwardPolyMap | ( | nIn, | |
nOut ) |
Make an astshim.PolyMap suitable for testing The forward transform is the same as for `makeTwoWayPolyMap`. This map does not have a reverse transform. The equation is chosen for the following reasons: - It is well defined for any positive value of nIn, nOut. - It stays small for small x, to avoid wraparound of angles for SpherePoint endpoints.
Definition at line 309 of file test.py.
astshim.test.makePolyMapCoeffs | ( | nIn, | |
nOut ) |
Make an array of coefficients for astshim.PolyMap for the following equation: fj(x) = C0j x0^2 + C1j x1^2 + C2j x2^2 + ... + CNj xN^2 where: * i ranges from 0 to N=nIn-1 * j ranges from 0 to nOut-1, * Cij = 0.001 (i+j+1)
Definition at line 262 of file test.py.
astshim.test.makeTwoWayPolyMap | ( | nIn, | |
nOut ) |
Make an astshim.PolyMap suitable for testing The forward transform is as follows: fj(x) = C0j x0^2 + C1j x1^2 + C2j x2^2 + ... + CNj xN^2 where Cij = 0.001 (i+j+1) The reverse transform is the same equation with i and j reversed thus it is NOT the inverse of the forward direction, but is something that can be easily evaluated. The equation is chosen for the following reasons: - It is well defined for any positive value of nIn, nOut. - It stays small for small x, to avoid wraparound of angles for SpherePoint endpoints.
Definition at line 283 of file test.py.