Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

"""Set color terms for MegaCam""" 

 

from lsst.pipe.tasks.colorterms import Colorterm, ColortermDict 

 

config.data = { 

"e2v": ColortermDict(data={ 

"u": Colorterm(primary="u", secondary="g", c0=0.0, c1=-0.241), 

"g": Colorterm(primary="g", secondary="r", c0=0.0, c1=-0.153), 

"r": Colorterm(primary="r", secondary="g", c0=0.0, c1=0.024), 

"i": Colorterm(primary="i", secondary="r", c0=0.0, c1=0.085), 

"z": Colorterm(primary="z", secondary="i", c0=0.0, c1=-0.074), 

}), 

}