LSSTApplications
18.0.0+46,18.0.0+93,19.0.0,19.0.0+1,19.0.0+2,19.0.0+3,19.0.0+4,19.0.0-1-g20d9b18+2,19.0.0-1-g3dc8cbe+2,19.0.0-1-g425ff20,19.0.0-1-g5549ca4,19.0.0-1-g580fafe+2,19.0.0-1-g5db401e+3,19.0.0-1-g6fe20d0+1,19.0.0-1-g7011481+2,19.0.0-1-g8c57eb9+2,19.0.0-1-g9828021+2,19.0.0-1-gb5175dc+2,19.0.0-1-gd7f3e1b+2,19.0.0-1-gdc0e4a7+2,19.0.0-1-ge272bc4+2,19.0.0-2-g0d9f9cd+2,19.0.0-2-g1c703f9ef+1,19.0.0-2-g3d9e4fb2+2,19.0.0-2-gd955cfd+2,19.0.0-3-g2d13df8,19.0.0-3-g63079e6+2,19.0.0-7-g8a434f2+1,19.0.0-7-gf796fef9+3,w.2019.49
LSSTDataManagementBasePackage
|
Classes | |
class | BoxGrid |
class | FrameSetInfo |
class | PermutedFrameSet |
class | TransformTestBaseClass |
Functions | |
def | makeSipPolyMapCoeffs (metadata, name) |
def | makeSipIwcToPixel (metadata) |
def | makeSipPixelToIwc (metadata) |
def lsst.afw.geom.testUtils.makeSipIwcToPixel | ( | metadata | ) |
Make an IWC to pixel transform with SIP distortion from FITS-WCS metadata This function is primarily intended for unit tests. IWC is intermediate world coordinates, as described in the FITS papers. Parameters ---------- metadata : lsst.daf.base.PropertySet FITS metadata describing a WCS with inverse SIP coefficients Returns ------- lsst.afw.geom.TransformPoint2ToPoint2 Transform from IWC position to pixel position (zero-based) in the forward direction. The inverse direction is not defined. Notes ----- The inverse SIP terms APn_m, BPn_m are polynomial coefficients x^n y^m for computing transformed x, y respectively. If we call the resulting polynomial inverseSipPolynomial, the returned transformation is: pixelPosition = pixel origin + uv + inverseSipPolynomial(uv) where uv = inverseCdMatrix * iwcPosition
Definition at line 198 of file testUtils.py.
def lsst.afw.geom.testUtils.makeSipPixelToIwc | ( | metadata | ) |
Make a pixel to IWC transform with SIP distortion from FITS-WCS metadata This function is primarily intended for unit tests. IWC is intermediate world coordinates, as described in the FITS papers. Parameters ---------- metadata : lsst.daf.base.PropertySet FITS metadata describing a WCS with forward SIP coefficients Returns ------- lsst.afw.geom.TransformPoint2ToPoint2 Transform from pixel position (zero-based) to IWC position in the forward direction. The inverse direction is not defined. Notes ----- The forward SIP terms An_m, Bn_m are polynomial coefficients x^n y^m for computing transformed x, y respectively. If we call the resulting polynomial sipPolynomial, the returned transformation is: iwcPosition = cdMatrix * (dxy + sipPolynomial(dxy)) where dxy = pixelPosition - pixelOrigin
Definition at line 237 of file testUtils.py.
def lsst.afw.geom.testUtils.makeSipPolyMapCoeffs | ( | metadata, | |
name | |||
) |
Return a list of ast.PolyMap coefficients for the specified SIP matrix The returned list of coefficients for an ast.PolyMap that computes the following function: f(dxy) = dxy + sipPolynomial(dxy)) where dxy = pixelPosition - pixelOrigin and sipPolynomial is a polynomial with terms `<name>n_m for x^n y^m` (e.g. A2_0 is the coefficient for x^2 y^0) Parameters ---------- metadata : lsst.daf.base.PropertySet FITS metadata describing a WCS with the specified SIP coefficients name : str The desired SIP terms: one of A, B, AP, BP Returns ------- list A list of coefficients for an ast.PolyMap that computes the specified SIP polynomial, including a term for out = in Note ---- This is an internal function for use by makeSipIwcToPixel and makeSipPixelToIwc
Definition at line 143 of file testUtils.py.