最近在画纬度—时间图,需要设置纵坐标轴格式为纬度,在网上搜索到了from cartopy.mpl.ticker import LatitudeFormatter的方法,但是import的时候总是出现错误如下图(GEOSGeom_createLinearRing_r returned a NULL pointer),有没有大佬知道这个问题怎么解决呀?
还有就是怎么样在时间坐标轴上只保留月和日期呀?现在画出来的图总是会有个年份在日期前面,我用的代码是这个
date = [datetime.strptime(d, '%m/%d').date() for d in dates]
[Date,LAT] = np.meshgrid(date[:],lat[:])
ct=plt.contour(Date[:],LAT[:],u_mean[:])