Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion camera/camera.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
import lsst.afw.cameraGeom.cameraConfig

#This simply asserts whether the config class is of the
#right format.
assert type(config)==lsst.afw.cameraGeom.cameraConfig.CameraConfig, 'config is of type %s.%s instead of lsst.afw.cameraGeom.cameraConfig.CameraConfig' % (type(config).__module__, type(config).__name__)

#Set the plate scale in arcsec/mm:
#Not strictly necessary.
#config.plateScale=206.67
config.plateScale=37.5

#This defines the native coordinate system:
#FocalPlane is (x,y) in mm (rather than radians or pixels, for example).
Expand Down