I have 3 vectors (1d): lat,lon and Temp (scalars) with the same length and Temp(lat,lon). ej.:
lat=[-90,-45,0,45,90]
lon=[ 0, 90, 180,270,360]
Temp=[274,290,280,300,310]
I want to plot it with matplotlib using contour, but Temp need to be in 2D dimension.
I found this topic 2D plot using 1D arrays without griddata() which is close of what I'm searching but i don't know how to create a function of Temp in 2D.
Could somebody help me?
Thanks
Paul