The Unidata Program Center has created a new mailing list for the users of Python in the Unidata community: python-users. The focus of the new list is questions and discussion around the Siphon and MetPy projects, although other topics relevant to the use of Python are welcome. For more information, please visit our mailing list page and look under "python-users".
Glad to be here
Posted by John Kerfoot on December 01, 2015 at 03:11 AM MST #
Hope to learn more about python...
Posted by Pedro Tildes Gomes on February 16, 2016 at 12:37 AM MST #
Good day fellow MetPy users,
I am seeking help in fixing the following error that appears to be related to MetPy.
# Example code from MetPy document
import numpy as np
import matplotlib.pyplot as plt
import cartopy.crs as ccrs
from metpy.cbook import get_test_data
# the line below generates errors
from metpy.io.gini import GiniFile
# Start error message block
ImportError Traceback (most recent call last)
<ipython-input-17-293570243ae6> in <module>()
3 import cartopy.crs as ccrs
4 from metpy.cbook import get_test_data
----> 5 from metpy.io.gini import GiniFile
/export/hpc-lw-hmtdev3/alaing/miniconda2/lib/python2.7/site-packages/metpy/io/__init__.py in <module>()
12 """
13
---> 14 from .gini import * # noqa
15 from .nexrad import * # noqa
16 __all__ = []
/export/hpc-lw-hmtdev3/alaing/miniconda2/lib/python2.7/site-packages/metpy/io/gini.py in <module>()
9 from enum import Enum
10 except ImportError:
---> 11 from enum34 import Enum
12 from itertools import repeat
13
ImportError: No module named enum34
# End error message block
I am running Python 2.7.11 with the latest MetPy, 0.3.0
Thank you very much for your help.
Arlene Laing
Posted by Arlene Laing on April 20, 2016 at 09:08 AM MDT #