Newer
Older
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
Fit your code to this project
=============================
Take the main survey (MSC) as an example.
A demo structure is shown below.
.. code-block:: shell
msc
├── __init__.py
├── data.py
│ └── CsstMscImgData class
└── processor.py
└── CsstMscImgL0Proc class
The data class
--------------
For each instrument, a specific data class should be constructed.
`CsstData` class is the root class.
.. code-block:: shell
CsstData
└── CsstMscData
└── CsstMscImgData
The pipeline
------------
A pipeline should have the structure like below.
.. code-block:: shell
CsstMscImgL0Proc
├── prepare()
├── run()
└── cleanup()