From 55f60a37458e1cfbea52c30d9ddc26cf34e2378c Mon Sep 17 00:00:00 2001 From: shoulinwei Date: Tue, 27 Jun 2023 22:48:54 +0800 Subject: [PATCH] add other data --- csst_dfs_commons/models/facility.py | 14 +++++++++++++- csst_dfs_commons/utils/data_file.py | 2 ++ test/test_fits.py | 14 ++++++++++++-- 3 files changed, 27 insertions(+), 3 deletions(-) create mode 100644 csst_dfs_commons/utils/data_file.py diff --git a/csst_dfs_commons/models/facility.py b/csst_dfs_commons/models/facility.py index 730dc57..a22b20e 100644 --- a/csst_dfs_commons/models/facility.py +++ b/csst_dfs_commons/models/facility.py @@ -153,4 +153,16 @@ class Level1PrcRecord(BaseModel): params_file_path: str="" prc_status: int = 0 prc_time: str="" - result_file_path: str="" \ No newline at end of file + result_file_path: str="" + +@dataclasses.dataclass +class OtherDataRecord(BaseModel): + id: int = 0 + obs_id : str = "" + detector_no: str="" + module_id: str = "" + file_type: str="" + filename : str="" + file_path: str="" + create_time: str="" + pipeline_id: str="" \ No newline at end of file diff --git a/csst_dfs_commons/utils/data_file.py b/csst_dfs_commons/utils/data_file.py new file mode 100644 index 0000000..834dcf6 --- /dev/null +++ b/csst_dfs_commons/utils/data_file.py @@ -0,0 +1,2 @@ +def get_headers(self, file_path): + pass \ No newline at end of file diff --git a/test/test_fits.py b/test/test_fits.py index c550acf..12e2daf 100644 --- a/test/test_fits.py +++ b/test/test_fits.py @@ -9,7 +9,17 @@ class CommonFitsTestCase(unittest.TestCase): pass def test_hdul_of_healpix_ids(self): - hdul = fits.open() - r = hdul_of_healpix_ids(id = 1) + # hdul = fits.open() + # r = hdul_of_healpix_ids(id = 1) + pass + + def test_get_header_value(self): + # cat_image_file = "" + # hdul = fits.open(cat_image_file) + # filter_str = get_header_value("FILTER", hdul, "") + # print("-"*20) + # print(filter_str) + # hdul.close() + pass -- GitLab