I think we should add dispatches for some operators between vectors and quantities. For example:
vec = cx.CartesianPos3D.from_([1., 2., 3.], "kpc")
q = u.Quantity(1., "kpc")
vec / q # CartesianPos3D with dimensionless unit
vec * q # CartesianPos3D with kpc**2 unit
Thoughts?