Input Format to pcolormesh
问题 I'm attempting to make heat/intensity map using Basemap. My inputs are a set of lats, lons, and intensity at that point. The dataset looks like this: lat[0], lon[0] = intensity[0] lat[1], lon[1] = intensity[1] ... lat[n], lon[n] = intensity[n] At each index the lat and lon correspond to the correct sensor reading. My code looks something like this: fig = plt.figure(figsize=(10, 8)) # Set title fig.suptitle("Intensities {} {}".format(start_time, stop_time)) # US Centered Map map_axis = fig.add