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
|
--- a/ccdproc/combiner.py 2020-02-02 08:00:00.000000000 +0800
+++ b/ccdproc/combiner.py 2025-01-16 11:36:34.563250393 +0800
@@ -63,7 +63,7 @@
and weighting used for combining frames.
Parameters
- -----------
+ ----------
ccd_iter : list or generator
A list or generator of CCDData objects that will be combined together.
@@ -241,7 +241,7 @@
Nimages-nlow-nhigh pixel values instead of the combination of Nimages.
Parameters
- -----------
+ ----------
nlow : int or None, optional
If not None, the number of low values to reject from the
combination.
@@ -295,7 +295,7 @@
"""Mask all pixels that are below min_clip or above max_clip.
Parameters
- -----------
+ ----------
min_clip : float or None, optional
If not None, all pixels with values below min_clip will be masked.
Default is ``None``.
@@ -332,7 +332,7 @@
high_thresh or lower than that set by low_thresh will be rejected.
Parameters
- -----------
+ ----------
low_thresh : positive float or None, optional
Threshold for rejecting pixels that deviate below the baseline
@@ -749,7 +749,7 @@
Convenience function for combining multiple images.
Parameters
- -----------
+ ----------
img_list : `numpy.ndarray`, list or str
A list of fits filenames or `~astropy.nddata.CCDData` objects that will be
combined together. Or a string of fits filenames separated by comma
|