cs=ax.pcolormesh(lons,lats,data,transform=ccrs.PlateCarree(),cmap=cmap,norm=norm,zorder=0)#Map, no data
ax.set_aspect('equal','datalim')
# Plot Individual Points
plt.plot(city_lon,city_lat,transform=ccrs.PlateCarree(),marker='*',markerfacecolor='red',markeredgecolor='black',markersize=20,label="Table Rock Lake")
plt.annotate('Made By Jared Rennie (@jjrennie) | Time='+str(current_day)+' '+str(current_hour)+' CDT',xy=(0.995,0.01),xycoords='axes fraction',fontsize=10,backgroundcolor='black',color='white',horizontalalignment='right',verticalalignment='bottom',zorder=4)