Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
csst-dfs
csst-dfs-commons
Commits
55f60a37
Commit
55f60a37
authored
1 year ago
by
Wei Shoulin
Browse files
Options
Download
Email Patches
Plain Diff
add other data
parent
5a61474f
main
master
1.0.1
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
csst_dfs_commons/models/facility.py
+13
-1
csst_dfs_commons/models/facility.py
csst_dfs_commons/utils/data_file.py
+2
-0
csst_dfs_commons/utils/data_file.py
test/test_fits.py
+12
-2
test/test_fits.py
with
27 additions
and
3 deletions
+27
-3
csst_dfs_commons/models/facility.py
+
13
-
1
View file @
55f60a37
...
...
@@ -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
This diff is collapsed.
Click to expand it.
csst_dfs_commons/utils/data_file.py
0 → 100644
+
2
-
0
View file @
55f60a37
def
get_headers
(
self
,
file_path
):
pass
\ No newline at end of file
This diff is collapsed.
Click to expand it.
test/test_fits.py
+
12
-
2
View file @
55f60a37
...
...
@@ -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
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Snippets