forked from HyperSuprime-Cam/hscSphinx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
todo
100 lines (64 loc) · 2.44 KB
/
todo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
- in the docs, a small explanation on the different calibration
processes (or a link) would be useful
- there's a little confusion between HSC deep field and "deepCoadd".
Might be worth mentioning it in the doc. Also the pipeline output
describes different ways to build the coadds. Worth mentioning it in
the doc?
Notes for software people
- I had to set isr.doFringe=False when running reduceBias.py,
reduceDark.py and reduceFlat.py, but shouldn't it be a default
configuration? All these three detrend tasks are not supposed to be
run with fringe pattern (even for Y-band), aren't they?
- bias images have expTime = 0 which makes isr.py crash on my mac
(because it feeds math.log10 with 0). I had to hack isr.py to overcome
this.
- I set --do-exec on my mac but lots of "job.my_machine.number" file
are written in working directory. Can we redirect those somewhere?
- when running in a script like reduceBias.py doesn't seem to return 1
if an error occurs so
sreduceBias.py [options] || { exit 1;} in a bash script won't stop if
an error occurs
- I get a strange error that apparently occur after writing the python
path " echo: write error: Resource temporarily unavailable". It only
happens very rarely but I have no idea of the cause.
- why do we need a fringing calibration. Fringes don't appear in flats?
questions:
- differences between postISRCCD and calexp
- do users need a 'wcs', ... 'fcr' ?
- what are calibrated_src, _exp
- src vs icSrc
- srcMatch vs srcMatchFull
- deepCoadd_ vs stack_
-- a.n.d. input format and example
******* bugs
-- minor
- Fringe in reduceDark.py
- hscIngestImages.py could create _mapper
-- validate
- check all permissions
- registry.sqlite
- chmod g+rw -R HSC/
- rerun dir
****** random notes ***********
-- full run
- mkdir /path/Subaru/HSC
- cp _mapper
- cd rawdata/
- hscIngestImages.py /path/to/HSC/ --create --mode=link HSCA*.fits
- reduceBias/Flat/Dark/Fringe
- cp /data3b/Subaru/HSC/CALIB /path/to/HSC
- reduceFrames.py /path/to/HSC --id visit=9100
- pipeQA
- must have db account!
- which privileges? create/drop db?
- need .pqa/dbauth.py
- set PGPASSWORD
-
-
ccdplot.py
----------
The following demonstrates how to load a calexp exposure, extract the
image and convert it to a numpy ndarray, and then create a png figure.
.. _ccdplot:
.. literalinclude:: scripts/ccdplot.py
:language: python