Traceback (most recent call last): File "D:\Project\CODE\pythonProject_eddy_identification\main.py", line 53, in <module> great_current = Contours(g.x_c, g.y_c, g.grid("adt"), levels=(0.35,), keep_unclose=True) File "C:\Users\37981\anaconda3\envs\identify_eddy\lib\site-packages\py_eddy_tracker\eddy_feature.py", line 484, in __init__ coord_dtype = contour.vertices.dtype UnboundLocalError: local variable 'contour' referenced before assignment
时间: 2023-05-19 17:05:37 浏览: 455
Mac下anaconda中Spyder打开报错Traceback(most recent call last)…问题
5星 · 资源好评率100%
这是一个 Python 代码的错误,错误信息显示在 main.py 文件的第 53 行,可能是由于在 Contours 类的初始化中,没有正确地定义变量 contour 导致的。建议检查代码并修复错误。
阅读全文