I like to reproduce the following image from an 1957 aviation report in tikz pgfplots. It is fairly complicated and I'm not sure how to approach it. Nodes and positioning is too much a hassle / requires find tuning and I don't see where I can use chains.
So thoughts and attempts?

One starting point is to use coordinates and the angles tikzlibrary. However the above figure has a lot of points and that just I don't think setting absolute coordinates is a good approach.
\documentclass[tikz,border=10pt]{standalone}
\usetikzlibrary{quotes,angles}
\begin{document}
\begin{tikzpicture}
\draw
(3,-1) coordinate (a) node[right] {a}
-- (0,0) coordinate (b) node[left] {b}
-- (2,2) coordinate (c) node[above right] {c}
pic["$\alpha$", draw=orange, <->, angle eccentricity=1.2, angle radius=1cm]
{angle=a--b--c};
\end{tikzpicture}
\end{document}

