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

14

15

16

17

18

19

20

21

from lsst.obs.lsst.ucd import UcdParseTask 

 

config.parse.retarget(UcdParseTask) 

 

# what used to be config.parse.translation = { 

 

# what used to be config.parse.translators = { 

del config.parse.translators['snap'] 

config.parse.translators['dayObs'] = 'translate_dayObs' 

config.parse.translators['testSeqNum'] = 'translate_testSeqNum' 

 

# what used to be config.parse.defaults = { 

config.parse.hdu = 0 

 

# what used to be config.register.columns = { 

del config.register.columns['snap'] 

config.register.columns['dayObs'] = 'text' 

config.register.columns['testSeqNum'] = 'int' 

 

config.register.unique = ["visit", "detector"] 

config.register.visit = list(config.register.columns.keys())