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).
float64
) -- Longitude in floating point value. Hour angle won't be accepted.float64
) -- Latitude.string
) -- Angular unit in which the longitude and latitude are given.string
) -- Coordinate frame in which the longitude and latitude are given.float64
) -- Time the instructed coordinate is valid at, considering sidereal motion.string
) -- Name of celestial body.>>> 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)
float64 lon
float64 lat
string unit
string frame
float64 time
string name