diff --git a/README.md b/README.md index 67ef40dc7a0b457b8d79cfa278b8a70906464754..94cb513501a343a2356cc0f3f9f8663c546d07e5 100644 --- a/README.md +++ b/README.md @@ -127,8 +127,10 @@ git pull origin main | module name | stage 1
(source code) | stage 2
(packaging) | stage 3
(instruction) | stage 4
(unit tests) | stage 5
(gitlab pipeline) | stage 6
(sphinx doc) | |-----------------------------|--------------------------|------------------------|--------------------------|-------------------------|------------------------------|-------------------------| | `csst_proto` | √ | √ | √ | √ | √ | √ | +| `csst_common` | √ | √ | √ | | | | +| `csst_l1` | √ | √ | √ | | | | | `csst_ms_mbi_instrument` | √ | √ | | | | | -| `csst_ms_mbi_distortion` | √ | √ | √ | | | | +| `csst_ms_mbi_distortion` | √ | √ | | | | | | `csst_ms_mbi_position` | √ | √ | | | | | | `csst_ms_mbi_flux` | √ | √ | | | | | | `csst_ms_mbi_photometry` | √ | √ | | | | | @@ -205,5 +207,7 @@ for detector in dm.target_detectors: print(dm.l0_log(detector=detector)) print(os.path.exists(dm.l0_log(detector=detector))) print("----- L1 images -----") - print(dm.l1_ccd(detector, post="img.fits")) -``` \ No newline at end of file + print(dm.l1_detector(detector, post="img.fits")) + print("----- L1 file -----") + print(dm.l1_file("flipped_image.fits")) +```