You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assume I 've a map in Galactic coord. and want to output it in Ecliptic , I set the det pointing as it follows :
[operators.det_pointing]
class = "toast.ops.pointing_detector.PointingDetectorSimple"
API = 0
boresight = "boresight_radec" # Observation shared key for boresight
coord_in = "G" # The input boresight coordinate system ('C', 'E', 'G')
coord_out = "E" # The output coordinate system ('C', 'E', 'G')
then an error raised:
Proc 1: File "/global/cscratch1/sd/giuspugl/toast3_software/lib/python3.9/site-packages/toast/ops/operator.py", line 49, in exec
self._exec(data, detectors=detectors, **kwargs)
Proc 1: File "/global/cscratch1/sd/giuspugl/toast3_software/lib/python3.9/site-packages/toast/timing.py", line 87, in df
return f(*args, **kwargs)
Proc 1: File "/global/cscratch1/sd/giuspugl/toast3_software/lib/python3.9/site-packages/toast/ops/pointing_detector.py", line 119, in _exec
coord_rot = qa.inv(qa.ecl2gal)
Proc 1: File "/global/cscratch1/sd/giuspugl/toast3_software/lib/python3.9/site-packages/toast/qarray.py", line 46, in inv
qin = ensure_buffer_f64(q)
Proc 1: File "/global/cscratch1/sd/giuspugl/toast3_software/lib/python3.9/site-packages/toast/utils.py", line 482, in ensure_buffer_f64
return np.ascontiguousarray(data, dtype=np.float64).flatten()
Proc 1: TypeError: float() argument must be a string or a number, not 'function'
Viceversa if i have
[operators.det_pointing]
class = "toast.ops.pointing_detector.PointingDetectorSimple"
API = 0
boresight = "boresight_radec" # Observation shared key for boresight
coord_in = "E" # The input boresight coordinate system ('C', 'E', 'G')
coord_out = "E" # The output coordinate system ('C', 'E', 'G')
the map is left w/ Galact. coord. see plot below
which shows a satellite scanning strategy that should clearly have the rings at the poles...
The text was updated successfully, but these errors were encountered:
Assume I 've a map in Galactic coord. and want to output it in Ecliptic , I set the det pointing as it follows :
then an error raised:
Viceversa if i have
the map is left w/ Galact. coord. see plot below
which shows a satellite scanning strategy that should clearly have the rings at the poles...
The text was updated successfully, but these errors were encountered: