def plot(dataFile, locationFile, date, saveName): Xscat, Yscat, Zscat, Xcont, Ycont, Zcont, T, F = flintLib.readExcel( dataFile, locationFile) m, legendHandles = flintLib.basePlot(Xscat, Yscat, Zscat) contourPlot(m, Xcont, Ycont, Zcont) legend(legendHandles, date, T, F) flintLib.plotSave(saveName)
def plot(dataFile, locationFile,date, saveName): Xscat,Yscat,Zscat,Xcont,Ycont,Zcont,T,F = flintLib.readExcel(dataFile, locationFile) m, legendHandles = flintLib.basePlot(Xscat,Yscat,Zscat) #Asterisk Xcs2, Ycs2 = m(-83.67091725,43.056074) #m.scatter(Xcs2,Ycs2,s=300,marker="$\u204E$",color='red',zorder = 10) contourPlot(m, Xcont, Ycont, Zcont) legend(legendHandles, date, T, F) flintLib.plotSave(saveName)
def plot3d(dataFile, locationFile): Xscat, Yscat, Zscat, Xcont, Ycont, Zcont, T, F = flintLib.readExcel( dataFile, locationFile) flintLib.contourScatter3d(Xcont, Ycont, Zcont, Xscat, Yscat, Zscat)