Commit 779ffe49 authored by Wei Shoulin's avatar Wei Shoulin
Browse files

optimize requirements

parent 8a5b10cf
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
## Introduction ## Introduction
This package provides APIs to access csst's files and databases. This package provides APIs to access CSST's files and databases.
## Installation ## Installation
...@@ -11,8 +11,7 @@ This package provides APIs to access csst's files and databases. ...@@ -11,8 +11,7 @@ This package provides APIs to access csst's files and databases.
```bash ```bash
git clone https://csst-tb.bao.ac.cn/code/csst-dfs/csst-dfs-api.git git clone https://csst-tb.bao.ac.cn/code/csst-dfs/csst-dfs-api.git
cd csst-dfs-api cd csst-dfs-api
pip install -r requirements.txt pip install .
python setup.py install
``` ```
`csst-dfs-api` and relevant packages could be installed by running one of the following commands in your terminal. `csst-dfs-api` and relevant packages could be installed by running one of the following commands in your terminal.
...@@ -28,3 +27,5 @@ enviroment variables ...@@ -28,3 +27,5 @@ enviroment variables
- CSST_DFS_API_MODE = local or cluster # default: local - CSST_DFS_API_MODE = local or cluster # default: local
- CSST_LOCAL_FILE_ROOT = [a local file directory] # required if DFS_API_MODE = local, default: /opt/temp/csst - CSST_LOCAL_FILE_ROOT = [a local file directory] # required if DFS_API_MODE = local, default: /opt/temp/csst
- CSST_DFS_GATEWAY = [gateway server's address] # required if DFS_API_MODE = cluster - CSST_DFS_GATEWAY = [gateway server's address] # required if DFS_API_MODE = cluster
- CSST_DFS_APP_ID = test # required
- CSST_DFS_APP_TOKEN = test # required
from ..common.delegate import Delegate
from astropy.table import Table
class Level2DataApi(object):
"""
Level2 Data Operation Class
"""
def __init__(self):
self.pymodule = Delegate().load(sub_module = "facility")
self.stub = getattr(self.pymodule, "Level2DataApi")()
def find(self, **kwargs):
''' retrieve level2 records from database
:param kwargs: Parameter dictionary, key items support:
level0_id: [str]
level1_id: [int]
module_id: [str]
brick_id: [int]
data_type: [str]
create_time : (start, end),
qc2_status : [int],
prc_status : [int],
import_status : [int],
filename: [str]
limit: limits returns the number of records,default 0:no-limit
:returns: csst_dfs_common.models.Result
'''
return self.stub.find(**kwargs)
def catalog_query(self, **kwargs):
''' retrieve level2 catalog
:param kwargs: Parameter dictionary, key items support:
sql: [str]
limit: limits returns the number of records,default 0:no-limit
:returns: csst_dfs_common.models.Result
'''
return self.stub.catalog_query(**kwargs)
def find_existed_brick_ids(self, **kwargs):
''' retrieve existed brick_ids in the catalog with data_type
:param kwargs:
data_type: [str]
:returns: csst_dfs_common.models.Result
'''
return self.stub.find_existed_brick_ids(**kwargs)
def get(self, **kwargs):
''' fetch a record from database
:param kwargs: Parameter dictionary, key items support:
id : [int]
:returns: csst_dfs_common.models.Result
'''
return self.stub.get(**kwargs)
def update_proc_status(self, **kwargs):
''' update the status of reduction
:param kwargs: Parameter dictionary, key items support:
id = [int],
status = [int]
:returns: csst_dfs_common.models.Result
'''
return self.stub.update_proc_status(**kwargs)
def update_qc2_status(self, **kwargs):
''' update the status of QC2
:param kwargs: Parameter dictionary, key items support:
id = [int],
status = [int]
:returns: csst_dfs_common.models.Result
'''
return self.stub.update_qc2_status(**kwargs)
def write(self, **kwargs):
''' insert a level2 record into database
:param kwargs: Parameter dictionary, key items support:
level1_id: [int]
brick_id: [int]
module_id : [str]
object_name: [str]
data_type : [str]
filename : [str]
file_path : [str]
prc_status : [int]
prc_time : [str]
pipeline_id : [str]
:returns: csst_dfs_common.models.Result
'''
return self.stub.write(**kwargs)
from ..common.delegate import Delegate
from astropy.table import Table
class Level2TypeApi(object):
"""
Level2Type Data Operation Class
"""
def __init__(self):
self.pymodule = Delegate().load(sub_module = "facility")
self.stub = getattr(self.pymodule, "Level2TypeApi")()
def find(self, **kwargs):
''' retrieve level2Type records from database
:param kwargs: Parameter dictionary, key items support:
module_id: [str]
data_type: [str]
import_status : [int],
page: [int]
limit: limits returns the number of records,default 0:no-limit
:returns: csst_dfs_common.models.Result
'''
return self.stub.find(**kwargs)
def get(self, **kwargs):
''' fetch a record from database
:param kwargs: Parameter dictionary, key items support:
data_type: [str]
:returns: csst_dfs_common.models.Result
'''
return self.stub.get(**kwargs)
def update_import_status(self, **kwargs):
''' update the status of import
:param kwargs: Parameter dictionary, key items support:
data_type: [str],
status = [int]
:returns: csst_dfs_common.models.Result
'''
return self.stub.update_import_status(**kwargs)
def write(self, **kwargs):
''' insert a level2Type record into database
:param kwargs: Parameter dictionary, key items support:
data_type : [str]
module_id : [str]
key_column : [str]
hdu_index : [int]
demo_filename : [str]
demo_file_path : [str]
ra_column : [str]
dec_column : [str]
:returns: csst_dfs_common.models.Result
'''
return self.stub.write(**kwargs)
version = "1.0.0"
\ No newline at end of file
astropy # base
astropy==5.3.4
pandas==2.0.3
networkx==3.2.1
matplotlib==3.7.2
numpy==1.26.1
healpy==1.16.6
# specific
astropy_healpix==1.0.1
grpcio==1.53.0 grpcio==1.53.0
grpcio_tools==1.53.0 grpcio_tools==1.53.0
protobuf==4.22.3 protobuf==4.22.3
pandas
networkx
matplotlib
numpy
astropy_healpix
healpy
DBUtils==1.3 DBUtils==1.3
\ No newline at end of file
[metadata] [metadata]
# replace with your username:
name = csst_dfs_api name = csst_dfs_api
author =CSST DFS Team. author =CSST DFS Team.
author_email = weishoulin@astrolab.cn author_email = weishoulin@astrolab.cn
description = CSST DFS APIs Library. description = APIs to access CSST Data Flow System (DFS)
long_description = file: README.md long_description = file: README.md
long_description_content_type = text/markdown long_description_content_type = text/markdown
keywords = astronomy, astrophysics, cosmology, space, CSST keywords = astronomy, astrophysics, cosmology, space, CSST
url = https://github.com/astronomical-data-processing/csst-dfs-api url = https://csst-tb.bao.ac.cn/code/csst-dfs/csst-dfs-api
project_urls =
Bug Tracker = https://github.com/astronomical-data-processing/csst-dfs-api/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options] [bumpver]
packages = find: current_version = "1.0.0"
python_requires = >=3.7 version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
zip_safe = False commit_message = "Release {new_version}"
setup_requires = setuptools_scm commit = True
\ No newline at end of file tag = True
push = True
[bumpver:file_patterns]
setup.cfg =
current_version = "{version}"
csst_dfs_api/version.py =
__version__ = "{version}"
\ No newline at end of file
# coding: utf-8
import os import os
from setuptools import setup from distutils.core import setup
setup(use_scm_version={'write_to': os.path.join('csst_dfs_api', '_version.py')}) setup_pars = {
"packages" : [
'csst_dfs_api',
'csst_dfs_api.common',
'csst_dfs_api.cpic',
'csst_dfs_api.facility',
'csst_dfs_api.functional',
'csst_dfs_api.hstdm',
'csst_dfs_api.ifs',
'csst_dfs_api.mbi',
'csst_dfs_api.mci',
'csst_dfs_api.sls',
],
"package_dir" : {
'csst_dfs_api' : 'csst_dfs_api',
'csst_dfs_api.common' : 'csst_dfs_api/common',
'csst_dfs_api.cpic' : 'csst_dfs_api/cpic',
'csst_dfs_api.facility' : 'csst_dfs_api/facility',
'csst_dfs_api.functional' : 'csst_dfs_api/functional',
'csst_dfs_api.hstdm' : 'csst_dfs_api/hstdm',
'csst_dfs_api.ifs' : 'csst_dfs_api/ifs',
'csst_dfs_api.mbi' : 'csst_dfs_api/mbi',
'csst_dfs_api.mci' : 'csst_dfs_api/mci',
'csst_dfs_api.sls' : 'csst_dfs_api/sls',
},
}
def requirements():
with open("requirements.txt", "r") as f:
return [
req.strip()
for req in f.readlines()
if not req.startswith("#") and req.__contains__("==")
]
def version():
version = {}
VERSION_PATH = os.path.join(os.path.dirname(__file__), "csst_dfs_api", "version.py")
with open(VERSION_PATH, "r") as file:
exec(file.read(), version)
return version
setup(
name="csst_dfs_api",
version=version["__version__"],
description="API's to access CSST Data Flow System (DFS)",
long_description=open('README.md').read(),
license="MIT",
python_requires=">=3.7",
setup_requires=["setuptools_scm"],
install_requires=requirements(),
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Astronomy",
],
include_package_data=False,
project_urls={
'Source': 'https://csst-tb.bao.ac.cn/code/csst-dfs/csst-dfs-api',
},
**setup_pars
)
...@@ -32,14 +32,14 @@ class Level0DataTestCase(unittest.TestCase): ...@@ -32,14 +32,14 @@ class Level0DataTestCase(unittest.TestCase):
def test_write(self): def test_write(self):
rec = self.api.write( rec = self.api.write(
level0_id = '000001101', level0_id = '10000010101',
obs_id = '0000011', obs_id = '100000101',
detector_no = "01", detector_no = "01",
filter = "u", filter = "u",
obs_type = "sci", obs_type = "sci",
obs_time = "2021-06-06 11:12:13", obs_time = "2021-06-06 11:12:13",
exp_time = 150, exp_time = 150,
detector_status_id = 3, detector_status_id = 3,
filename = "MSC_00001234", filename = "CSST_MSC_MS_SCI_20270810142128_20270810142358_100000101_01_L0_1.fits",
file_path = "/opt/MSC_00001234.fits") file_path = "/opt/temp/csst/CSST_MSC_MS_SCI_20270810142128_20270810142358_100000101_01_L0_1.fits")
print('write:', rec) print('write:', rec)
\ No newline at end of file
...@@ -35,7 +35,7 @@ class Level1DataTestCase(unittest.TestCase): ...@@ -35,7 +35,7 @@ class Level1DataTestCase(unittest.TestCase):
def test_write(self): def test_write(self):
rec = self.api.write( rec = self.api.write(
level0_id = '1000001201', level0_id = '10000010101',
data_type = "SCIE", data_type = "SCIE",
cor_sci_id = 0, cor_sci_id = 0,
prc_params = "/opt/dddasd.params", prc_params = "/opt/dddasd.params",
......
import os
import unittest
from astropy.io import fits
from csst_dfs_api.common.utils import to_table as to_fits_table
from csst_dfs_api.facility.level2 import Level2DataApi
class Level2DataTestCase(unittest.TestCase):
def setUp(self):
self.api = Level2DataApi()
def test_find(self):
recs = self.api.find(
level1_id=1)
print('find:', recs)
def test_find_existed_brick_ids(self):
recs = self.api.find_existed_brick_ids(data_type = "csst-msc-l1-phot")
print('find_existed_brick_ids:', recs)
def test_catalog_query(self):
result = self.api.catalog_query(
sql = 'select x,y,A,B,PA,AB,E from csst_msc_l1_phot',
limit = 2)
print(result)
if result.success and result['totalCount'] > 0:
dt = to_fits_table(result)
dt.pprint()
# def test_get(self):
# rec = self.api.get(id = 1)
# print('get:', rec)
# def test_update_proc_status(self):
# rec = self.api.update_proc_status(id = 1, status = 4)
# print('update_proc_status:', rec)
# def test_update_qc2_status(self):
# rec = self.api.update_qc2_status(id = 1, status = 7)
# print('update_qc2_status:', rec)
# def test_write(self):
# rec = self.api.write(
# level1_id= 1,
# module_id = 'MSC',
# data_type = "csst-msc-l1-phot",
# prc_status = 3,
# prc_time = '2021-10-22 11:12:13',
# filename = "CSST_MSC_MS_SCIE_20240821005429_20240821005659_10160000004_12_L1_V01_CAT.fits",
# file_path = "/opt/temp/csst/msc/L2/CSST_MSC_MS_SCIE_20240821005429_20240821005659_10160000004_12_L1_V01_CAT.fits",
# pipeline_id = "P1"
# )
# print('write:', rec)
# rec = self.api.write(
# level1_id= 1,
# module_id = 'MSC',
# data_type = "csst-msc-xcat",
# prc_status = 3,
# prc_time = '2021-10-22 11:12:13',
# filename = "MSC_MS_XCAT_BRICK_156958.fits",
# file_path = "/opt/temp/csst/fits_file/L2/L2_DEMO/MSC_MS_XCAT_BRICK_156958.fits",
# pipeline_id = "P1"
# )
# print('write:', rec)
\ No newline at end of file
import os
import unittest
from csst_dfs_api.facility.level2type import Level2TypeApi
class Level2TypeTestCase(unittest.TestCase):
def setUp(self):
self.api = Level2TypeApi()
def test_find(self):
recs = self.api.find(
module_id='MSC',
data_type='csst-msc-l1-phot'
)
print('find:', recs)
def test_get(self):
rec = self.api.get(data_type = 'csst-msc-l1-phot')
print('get:', rec)
def test_update_import_status(self):
rec = self.api.update_import_status(data_type = 'csst-msc-l1-phot', status = 4)
print('update_import_status:', rec)
def test_write(self):
rec = self.api.write(
data_type = "csst-msc-l1-phot",
module_id = "MSC",
key_column = "ID",
hdu_index = 1,
demo_filename = "CSST_MSC_MS_SCIE_20240821005429_20240821005659_10160000004_12_L1_V01_CAT.fits",
demo_file_path = "/Users/wsl/temp/csst/msc/L2/CSST_MSC_MS_SCIE_20240821005429_20240821005659_10160000004_12_L1_V01_CAT.fits",
ra_column = "RA",
dec_column = "DEC")
rec = self.api.write(
data_type = "csst-msc-xcat",
module_id = "MSC",
key_column = "PhotoObjID",
hdu_index = 1,
demo_filename = "MSC_MS_XCAT_BRICK_156958.fits",
demo_file_path = "/Users/wsl/temp/csst/msc/L2/MSC_MS_XCAT_BRICK_156958.fits",
ra_column = "RA_r",
dec_column = "DEC_r")
print('write:', rec)
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment