Skip to content
GitLab
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-api-cluster
Commits
97fce90b
Commit
97fce90b
authored
Nov 24, 2022
by
Wei Shoulin
Browse files
gz
parent
edce42f0
Changes
1
Show whitespace changes
Inline
Side-by-side
csst_dfs_api_cluster/common/catalog.py
View file @
97fce90b
...
...
@@ -28,7 +28,7 @@ class CatalogApi(object):
'''
try
:
t_start
=
time
.
time
()
resp
,
_
=
self
.
stub
.
Gaia3Search
(
ephem_pb2
.
EphemSearchRequest
(
resp
,
_
=
self
.
stub
.
Gaia3Search
.
with_call
(
ephem_pb2
.
EphemSearchRequest
(
ra
=
ra
,
dec
=
dec
,
radius
=
radius
,
...
...
@@ -36,17 +36,14 @@ class CatalogApi(object):
maxMag
=
max_mag
,
obstime
=
obstime
,
limit
=
limit
),
wait_for_ready
=
True
,
metadata
=
get_auth_headers
()
)
),
metadata
=
get_auth_headers
())
t_end
=
time
.
time
()
log
.
info
(
"gaia3_query used: %.6f's"
%
(
t_end
-
t_start
,))
if
resp
.
success
:
t_start
=
time
.
time
()
data
=
from_proto_model_list
(
Gaia3Record
,
resp
.
records
)
t_end
=
time
.
time
()
log
.
info
(
"object deserialization used: %.6f's"
%
(
t_end
-
t_start
,))
#
log.info("object deserialization used: %.6f's" %(t_end - t_start,))
return
Result
.
ok_data
(
data
=
data
).
append
(
"totalCount"
,
resp
.
totalCount
)
else
:
return
Result
.
error
(
message
=
str
(
resp
.
error
.
detail
))
...
...
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