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-pipeline
csst_common
Commits
cefadce4
Commit
cefadce4
authored
2 years ago
by
BO ZHANG
Browse files
Options
Download
Email Patches
Plain Diff
update DFS API
parent
7057cc83
dev
main
wangxia-main-patch-87026
zhaobowei-main-patch-61353
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
csst_common/data/dfs_conf.yml
+0
-2
csst_common/data/dfs_conf.yml
csst_common/data_manager.py
+16
-8
csst_common/data_manager.py
with
16 additions
and
10 deletions
+16
-10
csst_common/data/dfs_conf.yml
+
0
-
2
View file @
cefadce4
...
...
@@ -4,11 +4,9 @@ pml:
CSST_DFS_GATEWAY
:
"
172.24.21.2:30880"
CSST_DFS_APP_ID
:
"
test"
CSST_DFS_APP_TOKEN
:
"
test"
CSST_DFS_LOGS_DIR=
:
"
."
kmust
:
CSST_DFS_API_MODE
:
"
cluster"
CSST_DFS_GATEWAY
:
"
222.197.214.168:30880"
CSST_DFS_APP_ID
:
"
1"
CSST_DFS_APP_TOKEN
:
"
1"
CSST_DFS_LOGS_DIR=
:
"
."
This diff is collapsed.
Click to expand it.
csst_common/data_manager.py
+
16
-
8
View file @
cefadce4
...
...
@@ -24,8 +24,9 @@ from astropy.table import Table
from
csst_dfs_api.facility.calmerge
import
CalMergeApi
from
csst_dfs_api.facility.level0
import
Level0DataApi
from
csst_dfs_api.facility.level0prc
import
Level0PrcApi
from
csst_dfs_api.msc.level1
import
Level1DataApi
from
csst_dfs_api.msc.level2
import
Level2DataApi
from
csst_dfs_api.mbi.level1
import
Level1DataApi
as
MbiLevel1DataApi
from
csst_dfs_api.mbi.level1prc
import
Level1PrcApi
as
MbiLevel1PrcApi
from
csst_dfs_api.mbi.level2
import
Level2DataApi
as
MbiLevel2DataApi
from
csst_dfs_api.sls.level1
import
Level1DataApi
as
SlsLevel1DataApi
from
csst_dfs_api.sls.level1prc
import
Level1PrcApi
as
SlsLevel1PrcApi
from
csst_dfs_api.sls.level2spectra
import
Level2SpectraApi
as
SlsLevel2DataApi
...
...
@@ -163,6 +164,9 @@ class CsstMsDataManager:
backend
=
"multiprocessing"
):
# set DFS log dir
os
.
environ
[
"CSST_DFS_LOGS_DIR"
]
=
"."
# version
assert
ver_sim
in
CP
[
"sim"
][
"versions"
]
self
.
ver_sim
=
ver_sim
...
...
@@ -254,16 +258,20 @@ class CsstMsDataManager:
return
Level0DataApi
()
@
property
def
dfs_L
1Data
Api
(
self
):
return
Level
1Data
Api
()
def
dfs_L
0Prc
Api
(
self
):
return
Level
0Prc
Api
()
@
property
def
dfs_
L2
DataApi
(
self
):
return
Level
2
DataApi
()
def
dfs_
MbiL1
DataApi
(
self
):
return
Mbi
Level
1
DataApi
()
@
property
def
dfs_L0PrcApi
(
self
):
return
Level0PrcApi
()
def
dfs_MbiL1PrcApi
(
self
):
return
MbiLevel1PrcApi
()
@
property
def
dfs_MbiL2DataApi
(
self
):
return
MbiLevel2DataApi
()
@
property
def
dfs_SlsL1DataApi
(
self
):
...
...
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