Closed RoxanaFonsecaRdz closed 4 years ago
On line 19 it marked an error, apparently because of the python version I have. tree=spatial.KDTree(zip(lons.ravel(),lats.ravel()))
I change for this tree=spatial.KDTree(list(zip(lon.ravel(),lat.ravel())))
On line 19 it marked an error, apparently because of the python version I have. tree=spatial.KDTree(zip(lons.ravel(),lats.ravel()))
I change for this tree=spatial.KDTree(list(zip(lon.ravel(),lat.ravel())))