Skip to content

Commit

Permalink
Merge pull request #210 from lsst/tickets/DM-32601-docfix
Browse files Browse the repository at this point in the history
DM-32601-docfix: fix pipelines build
  • Loading branch information
parejkoj committed Dec 21, 2021
2 parents 04b6af8 + 36bb3ff commit 84d6eb7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 1 addition & 3 deletions doc/lsst.jointcal/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,5 @@ Python API reference

.. automodapi:: lsst.jointcal
:no-main-docstr:
.. automodapi:: lsst.jointcal.dataIds
:no-main-docstr:
.. automodapi:: lsst.jointcal.utils
.. automodapi:: lsst.jointcal.cameraGeometry
:no-main-docstr:
5 changes: 2 additions & 3 deletions python/lsst/jointcal/cameraGeometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,11 @@ def computeDistortionModel(self):
"""Calculate the afw cameraGeom distortion model to be included in an
on-disk camera model.
PLACEHOLDER: This may be as simple as running `computePixelScale` and
then doing a numpy polynomial fit to it for the cameraGeom input.
However, we need to check details of how that distortion model is
stored in a Camera.
e.g.: np.polyfit(self.fieldAngle, self.radialScale, poly_degree))
stored in a Camera. e.g.:
np.polyfit(self.fieldAngle, self.radialScale, poly_degree)
"""
raise NotImplementedError("not yet!")

Expand Down

0 comments on commit 84d6eb7

Please sign in to comment.