necst_msgs.msg.CoordMsg Reference

necst_msgs.msg.CoordMsg

Data type for celestial coordinate information. This message can be used for coordinate specification (lon, lat, unit, frame, time) and name query (name, time).

Fields

Example

>>> from necst_msgs.msg import CoordMsg
>>> msg1 = CoordMsg(
...     lon=5.0, lat=6.1, unit="deg", frame="fk5", time=1664792192.3645709
... )
>>> msg2 = CoordMsg(name="pollux", time=1664792192.3645709)

Raw definitions

float64 lon
float64 lat
string unit
string frame
float64 time
string name

Home