I have a NumPy array of latitude/longitude (WGS84) coordinates like this:
coords = np.asarray([
[6.74219, -53.57835],
[6.74952, -53.57241],
[6.75652, -53.56289],
[6.74756, -53.56598],
[6.73462, -53.57518]])
I want to use the pyproj library in order to project these lat/lon coordinates using a Winkel-Tripel (still WGS84) without processing each point separately?
How can I join the result of pyproj, which are separate X/Y arrays, into a single numpy array just like the coordinate array above?