I have observation data from a satellite called Aeolus. The data are single arrays. So one 1D array for date and time, one for latitude information, one for longitude information and one for wind speed.
date_aeolus
lat_aeolus
lon_aeolus
wind_aeolus
In the end I would like to create a pcolormesh lat - lon plot of the wind speed. But therefore I need the wind speed as 2D:
wind_aeolus[lat,lon]
How can I create such an array?