ch08_csst_common.rst 8.9 KB
Newer Older
BO ZHANG's avatar
BO ZHANG committed
1
2
3
Using ``csst_common``
=====================

BO ZHANG's avatar
tweaks    
BO ZHANG committed
4
5
6
7
In this chapter, we introduce the basic usages of some IMPORTANT functions / classes in ``csst_common``.
Package source code and installation guide can be found in the link below.

- https://csst-tb.bao.ac.cn/code/csst-l1/csst_common
BO ZHANG's avatar
BO ZHANG committed
8

BO ZHANG's avatar
tweaks    
BO ZHANG committed
9
10
``csst_common.data_manager.CsstMsDataManager``
----------------------------------------------
BO ZHANG's avatar
BO ZHANG committed
11
12
13
14
15

A class that helps developers to access simulation files.

.. code-block:: python

BO ZHANG's avatar
tweaks    
BO ZHANG committed
16
    from csst_common.data_manager import CsstMsDataManager
BO ZHANG's avatar
BO ZHANG committed
17
18
    # for full basic initialization
    dm_mbi = CsstMsDataManager(
BO ZHANG's avatar
BO ZHANG committed
19
20
21
22
23
24
25
        ver_sim="C5.2",                  # version of simulation, "C5.2" is the latest
        dir_l0="",                       # the L0/input directory
        dir_l1="",                       # the L1/output directory
        dir_pcref="",                    # position calibration reference (will be deprecated)
        path_aux="",                     # aux file paths (master bias, dark, flat)
        assert_all_detectors=False,      # if True, assert all detectors are available
        datatype="mbi",                  # "mbi" or "sls"
BO ZHANG's avatar
BO ZHANG committed
26
    )
BO ZHANG's avatar
BO ZHANG committed
27
    dm_mbi.set_detectors(detectors=None) # use all available detectors
BO ZHANG's avatar
tweaks    
BO ZHANG committed
28
29
30
31

.. code-block:: python

    # for a quick start ()
BO ZHANG's avatar
BO ZHANG committed
32
33
34
35
    dm_mbi = CsstMsDataManager.quickstart(
        ver_sim="C5.2",
        datatype="mbi",
        dir_l1=".",
BO ZHANG's avatar
BO ZHANG committed
36
        exposure_id=100                  # the 100th exposure
BO ZHANG's avatar
BO ZHANG committed
37
    )
BO ZHANG's avatar
BO ZHANG committed
38
39
40
41
42
43
44
45
    dm_mbi.set_detectors(detectors=None) # use all available detectors

.. note::
    This ``quickstart`` method is ONLY available on
    ``dandelion`` and the Purple Mountain Lab node.
    In your local development environment, you have to use
    ``CsstMsDataManager(...)`` to initialize it.

BO ZHANG's avatar
tweaks    
BO ZHANG committed
46
47
48

.. code-block:: python

BO ZHANG's avatar
BO ZHANG committed
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
    # access L0 directory
    dm_mbi.dir_l0
    # access L1 directory
    dm_mbi.dir_l1
    # access dir_pcref
    dm_mbi.dir_pcref
    # access path_aux
    dm_mbi.path_aux
    # access ver_sim
    dm_mbi.ver_sim
    # access target detectors
    dm_mbi.target_detectors
    # access available detectors
    dm_mbi.available_detectors
    # define an L1 file (detector-specified)
    dm_mbi.l1_detector(detector=6)
    # define an L1 file (non-detector-specified)
    dm_mbi.l1_file("flipped_image.fits")

BO ZHANG's avatar
tweaks    
BO ZHANG committed
68
69
.. code-block:: python

BO ZHANG's avatar
BO ZHANG committed
70
71
72
73
74
75
76
    # to get bias
    dm_mbi.get_bias()
    # to get dark
    dm_mbi.get_dark()
    # to get flat
    dm_mbi.get_flat()

BO ZHANG's avatar
BO ZHANG committed
77
78
79
80
81
82
83
84
85
86
87
88
89
Access code to data products
----------------------------

``Multi-Band Imaging``
^^^^^^^^^^^^^^^^^^^^^^

========================== ===== ========================================================== ==================
Data source                Level File name / access code                                     Notes
========================== ===== ========================================================== ==================
raw                        0     ``dm.l0_detector(detector=detector)``                      sci image
raw                        0     ``dm.l0_crs(detector=detector)``                           cosmic ray image
raw                        0     ``dm.l0_cat(detector=detector)``                           input catalog
raw                        0     ``dm.l0_log(detector=detector)``                           log file
BO ZHANG's avatar
BO ZHANG committed
90
91
92
93
``csst_ms_mbi_instrument`` --    ``dm.l1_detector(detector=detector, post="img.fits")``     corrected image
``csst_ms_mbi_instrument`` --    ``dm.l1_detector(detector=detector, post="flg.fits")``     flag image
``csst_ms_mbi_instrument`` --    ``dm.l1_detector(detector=detector, post="wht.fits")``     weight image
``csst_ms_mbi_instrument`` --    ``dm.l1_detector(detector=detector, post="img.head")``     L0 fits header
BO ZHANG's avatar
BO ZHANG committed
94
95
``DFS``                    --    ``dm.l1_file(name="gaia_dfs.fits")``                       reference catalog
``csst_ms_mbi_distortion`` --    ``dm.l1_detector(detector=detector, post="wcs.head")``     fits head with WCS
BO ZHANG's avatar
BO ZHANG committed
96
97
98
99
100
``csst_ms_mbi_position``   --    ``dm.l1_detector(detector=detector, post="img.acat")``     photometry catalog
``csst_ms_mbi_position``   --    ``dm.l1_detector(detector=detector, post="img.rcat")``     reference catalog
``csst_ms_mbi_flux``       1     ``dm.l1_detector(detector=detector, post="img_L1.fits")``  sci image (L1)
``csst_ms_mbi_flux``       1     ``dm.l1_detector(detector=detector, post="flg_L1.fits")``  flag image (L1)
``csst_ms_mbi_flux``       1     ``dm.l1_detector(detector=detector, post="wht_L1.fits")``  weight image (L1)
BO ZHANG's avatar
BO ZHANG committed
101
102
103
104
105
106
107
108
109
110
111
112
========================== ===== ========================================================== ==================


``Slit-Less Spectra``
^^^^^^^^^^^^^^^^^^^^^
========================== ===== ========================================================== ==================
Data source                Level File name / access code                                     Notes
========================== ===== ========================================================== ==================
raw                        0     ``dm.l0_detector(detector=detector)``                      sci image
raw                        0     ``dm.l0_crs(detector=detector)``                           cosmic ray image
raw                        0     ``dm.l0_cat(detector=detector)``                           input catalog
raw                        0     ``dm.l0_log(detector=detector)``                           log file
BO ZHANG's avatar
BO ZHANG committed
113
``csst_ms_sls_instrument`` --    ``dm.l1_detector(detector=detector, post="flt.fits")``     corrected image
BO ZHANG's avatar
BO ZHANG committed
114
115
========================== ===== ========================================================== ==================

BO ZHANG's avatar
BO ZHANG committed
116

BO ZHANG's avatar
BO ZHANG committed
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
``csst_common.file_recorder.FileRecorder``
------------------------------------------

Get an empty ``FileRecorder``.
This is initially a ``list``-like object.
Use ``FileRecorder.add_record()`` to add file records.

.. code-block::
    :linenos:

    >>> from csst_common.file_recorder import FileRecorder
    >>> fr = FileRecorder()
    >>> for i in range(3):
    >>>     fr.add_record(filepath="test{:03d}.txt".format(i),
    >>>                   db=True,
    >>>                   comment="Test file {:d}".format(i))
    >>> fr.pprint_all()

    <FileRecorder length=3>
      filepath   db    comment   existence
    ----------- ---- ----------- ---------
    test000.txt True Test file 0     False
    test001.txt True Test file 1     False
    test002.txt True Test file 2     False

142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
`FileRecorder` inherits from `list`.
Therefore, if you are collecting records from subprocesses,
here is the way to combine records:

.. code-block:: python
    :linenos:

    >>> from csst_common.file_recorder import FileRecorder
    >>> fr1 = FileRecorder()
    >>> fr1.add_record(filepath="test1.txt", db=False, comment="test file 1")
    >>> fr2 = FileRecorder()
    >>> fr2.add_record(filepath="test2.txt", db=False, comment="test file 2")
    >>> fr_all = FileRecorder([*fr1, *fr2])
    >>> fr_all.pprint_all()
    <FileRecorder length=2>
     filepath   db    comment   existence
    --------- ----- ----------- ---------
    test1.txt False test file 1     False
    test2.txt False test file 2     False

BO ZHANG's avatar
tweaks    
BO ZHANG committed
162
163
164
165
166
167
168
169
170
    >>> fr_all.extend(fr1)
    >>> fr_all.pprint_all()
    <FileRecorder length=3>
     filepath   db    comment   existence
    --------- ----- ----------- ---------
    test1.txt False test file 1     False
    test2.txt False test file 2     False
    test1.txt False test file 1     False

BO ZHANG's avatar
BO ZHANG committed
171

BO ZHANG's avatar
BO ZHANG committed
172
173
174
175
176
177
178
``csst_common.logger.get_logger()``
-----------------------------------

Get the default configured ``logging.Logger``.


.. code-block:: python
BO ZHANG's avatar
BO ZHANG committed
179
    :linenos:
BO ZHANG's avatar
BO ZHANG committed
180
181
182
183

    from csst_common.logger import get_logger
    logger = get_logger()

BO ZHANG's avatar
BO ZHANG committed
184
.. warning::
BO ZHANG's avatar
BO ZHANG committed
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
    Developers should NOT use ``print`` function extensively in code.
    Generally ``print`` can be replaced with ``logger.debug("msg")``.
    For important information, use ``logger.info("msg")``.
    For warnings, use ``logger.warning("msg")``.
    For errors, use ``logger.error("msg")``.
    Conf https://docs.python.org/3/library/logging.html for more information
    about the usage of ``logging.Logger``.


``csst_common.status.CsstStatus``
---------------------------------

Developers should use ``csst_common.status.CsstStatus`` to return the
status of their interfaces.

.. code-block:: python
BO ZHANG's avatar
BO ZHANG committed
201
    :linenos:
BO ZHANG's avatar
BO ZHANG committed
202
203
204
205
206
207
208
209
210
211
212

    from csst_common.status import CsstStatus
    # presently 3 kinds of status are available, they are
    CsstStatus.PERFECT
    CsstStatus.WARNING
    CsstStatus.ERROR


An example interface
--------------------

BO ZHANG's avatar
tweaks    
BO ZHANG committed
213
214
215
We recommend our developers to use the code structure used in the example interfaces,
e.g., ``process_single_image`` and ``process_multiple_images``.
The example code is shown below.
BO ZHANG's avatar
BO ZHANG committed
216

BO ZHANG's avatar
BO ZHANG committed
217
218
219
Source code
^^^^^^^^^^^

BO ZHANG's avatar
BO ZHANG committed
220
.. literalinclude:: csst_common/example_interface.py
BO ZHANG's avatar
BO ZHANG committed
221
    :caption: ``example_interface.py``
222
    :emphasize-lines: 7-11,36-41,85,87-88,91-92,95-96,99-101,111-116,148,155-165,167-173,178-179,182-183,186-187,190-191
BO ZHANG's avatar
BO ZHANG committed
223
224
    :linenos:
    :language: python
BO ZHANG's avatar
BO ZHANG committed
225
226
227
228
229
230
231


Rendered ``docstring``
^^^^^^^^^^^^^^^^^^^^^^

.. automodule:: example_interface
    :members:
BO ZHANG's avatar
tweaks    
BO ZHANG committed
232
233
234
235
236
237
238
239
240
241


``csst_common.params``
----------------------

to be updated

Module Identifier
-----------------

BO ZHANG's avatar
BO ZHANG committed
242
to be updated