LSST Applications g0fba68d861+aa97b6e50c,g1ec0fe41b4+f536777771,g1fd858c14a+a9301854fb,g35bb328faa+fcb1d3bbc8,g4af146b050+a5c07d5b1d,g4d2262a081+78f4f01b60,g53246c7159+fcb1d3bbc8,g56a49b3a55+9c12191793,g5a012ec0e7+3632fc3ff3,g60b5630c4e+ded28b650d,g67b6fd64d1+ed4b5058f4,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g8352419a5c+fcb1d3bbc8,g87b7deb4dc+7b42cf88bf,g8852436030+e5453db6e6,g89139ef638+ed4b5058f4,g8e3bb8577d+d38d73bdbd,g9125e01d80+fcb1d3bbc8,g94187f82dc+ded28b650d,g989de1cb63+ed4b5058f4,g9d31334357+ded28b650d,g9f33ca652e+50a8019d8c,gabe3b4be73+1e0a283bba,gabf8522325+fa80ff7197,gb1101e3267+d9fb1f8026,gb58c049af0+f03b321e39,gb89ab40317+ed4b5058f4,gcf25f946ba+e5453db6e6,gcf6002c91b+2a0c9e9e84,gd6cbbdb0b4+bb83cc51f8,gdd1046aedd+ded28b650d,gde0f65d7ad+66b3a48cb7,ge278dab8ac+d65b3c2b70,ge410e46f29+ed4b5058f4,gf23fb2af72+b7cae620c0,gf5e32f922b+fcb1d3bbc8,gf67bdafdda+ed4b5058f4,w.2025.16
LSST Data Management Base Package
|
Classes | |
class | Dodecahedron |
Functions | |
computeRotationMatrix (angle, axis) | |
_computeCoordTransform (vec0, vec1, vec1NegativeX=False) | |
_computeDodecahedronVertices (faceVecList) | |
_computeFullVecList (basisSet) | |
_findCloseIndexSet (vecList, ind) | |
_findCloseList (vecList, vec) | |
_findClosePair (vecList, ind=0) | |
_sortedVectorList (vecList) | |
Variables | |
precision | |
suppress | |
True | |
linewidth | |
vertexDodec = Dodecahedron(withFacesOnPoles=False) | |
faceVec = vertexDodec.getFaceCtr(i) | |
|
protected |
Compute a rotation matrix that puts vec0 along z and vec1 along +x in the xz plane. Parameters ---------- vec0 : `numpy.ndarray` vector 0 vec1 : `numpy.ndarray` vector 1 vec1NegativeX : `bool` If True then vec1 is rotated to face negative x.
Definition at line 138 of file dodecahedron.py.
|
protected |
Given a vector of face positions of a Dodecahedron compute the vertices.
Definition at line 172 of file dodecahedron.py.
|
protected |
Given a collection of basis vectors, compute all permutations with both signs of all nonzero values. For example:: [(0, 1, 2)] -> [(0, 1, 2), (0, -1, 2), (0, 1, -2), (0, -1, -2)]
Definition at line 201 of file dodecahedron.py.
|
protected |
Given a list of cartesian vectors, return a set of indices of those closest to one of them. This is intended for regular grids where distances are quantized. Parameters ---------- vecList : `list` List of cartesian vectors. ind : `int` Index of vector to be nearest.
Definition at line 226 of file dodecahedron.py.
|
protected |
Given a list of cartesian vectors, return all those closest to a specified position This is intended for regular grids where distances are quantized Parameters ---------- vecList : `list` List of cartesian vectors. vec : `iterable` of `float` Vector to be near. Returns ------- retList : `list` List of closest vectors. indList : `list` List if indices of those vectors.
Definition at line 246 of file dodecahedron.py.
|
protected |
Given a list of cartesian vectors and an index, return the vector and one of its closest neighbors. Parameters ---------- vecList : `list` of `numpy.ndarray` List of cartesian vectors. ind : `int` Index of first vector.
Definition at line 273 of file dodecahedron.py.
|
protected |
Return a list of cartesian vectors sorted by decreasing latitude and increasing longitude.
Definition at line 290 of file dodecahedron.py.
lsst.skymap.detail.dodecahedron.computeRotationMatrix | ( | angle, | |
axis ) |
Return a 3D rotation matrix for rotation by a specified amount around a specified axis. Parameters ---------- angle : `float` Amount of rotation (rad). axis : `int` Axis of rotation; one of 0, 1 or 2 for x, y or z.
Definition at line 116 of file dodecahedron.py.
lsst.skymap.detail.dodecahedron.faceVec = vertexDodec.getFaceCtr(i) |
Definition at line 311 of file dodecahedron.py.
lsst.skymap.detail.dodecahedron.linewidth |
Definition at line 306 of file dodecahedron.py.
lsst.skymap.detail.dodecahedron.precision |
Definition at line 306 of file dodecahedron.py.
lsst.skymap.detail.dodecahedron.suppress |
Definition at line 306 of file dodecahedron.py.
lsst.skymap.detail.dodecahedron.True |
Definition at line 306 of file dodecahedron.py.
lsst.skymap.detail.dodecahedron.vertexDodec = Dodecahedron(withFacesOnPoles=False) |
Definition at line 309 of file dodecahedron.py.