Replies: 2 comments 2 replies
-
@salbenson - can you try updating from Python 3.7 to 3.10? conda install python=3.10 In the meantime, we can take a look at troubleshooting. |
Beta Was this translation helpful? Give feedback.
2 replies
-
I haven't been able to update python yet. I tried "conda update --all" and "conda install python=3.9" and "conda install python=3.10", but it finds conflicting packages so it remains at python 3.7.12. It may be because I initially installed miniconda3 on my Mac and not anaconda. At this point, to update my Python version, I'll have to contact my computer support team and get back to you when that has been completed. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I am trying to use pyart. I seem to get so many warnings from cartopy that the pyart plot won't complete. I have tried updating cartopy with conda update cartopy, but it doesn't help. I try updating pyart with conda update -c conda-forge arm_pyart but that doesn't help either. I get a weird display and an empty image file.
Any help is appreciated.
Thanks!
Sally
You are using the Python ARM Radar Toolkit (Py-ART), an open source
library for working with weather radar data. Py-ART is partly
supported by the U.S. Department of Energy as part of the Atmospheric
Radiation Measurement (ARM) Climate Research Facility, an Office of
Science user facility.
If you use this software to prepare a publication, please cite:
JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119
/Users/u0079358/miniconda3/lib/python3.7/site-packages/cartopy/mpl/geoaxes.py:1608: MatplotlibDeprecationWarning: This usage of Quadmesh is deprecated: Parameters meshWidth and meshHeights will be removed; coordinates must be 2D; all parameters except coordinates will be keyword-only.
antialiased=antialiased, shading=shading, **kwargs)
/Users/u0079358/miniconda3/lib/python3.7/site-packages/cartopy/mpl/gridliner.py:307: UserWarning: The .xlabels_top attribute is deprecated. Please use .top_labels to toggle visibility instead.
warnings.warn('The .xlabels_top attribute is deprecated. Please '
/Users/u0079358/miniconda3/lib/python3.7/site-packages/cartopy/mpl/gridliner.py:343: UserWarning: The .ylabels_right attribute is deprecated. Please use .right_labels to toggle visibility instead.
warnings.warn('The .ylabels_right attribute is deprecated. Please '
/Users/u0079358/miniconda3/lib/python3.7/site-packages/cartopy/mpl/geoaxes.py:1608: MatplotlibDeprecationWarning: This usage of Quadmesh is deprecated: Parameters meshWidth and meshHeights will be removed; coordinates must be 2D; all parameters except coordinates will be keyword-only.
antialiased=antialiased, shading=shading, **kwargs)
/Users/u0079358/miniconda3/lib/python3.7/site-packages/cartopy/crs.py:245: ShapelyDeprecationWarning: len for multi-part geometries is deprecated and will be removed in Shapely 2.0. Check the length of the
geoms
property instead to get the number of parts of a multi-part geometry.if len(multi_line_string) > 1:
/Users/u0079358/miniconda3/lib/python3.7/site-packages/cartopy/crs.py:297: ShapelyDeprecationWarning: Iteration over multi-part geometries is deprecated and will be removed in Shapely 2.0. Use the
geoms
property to access the constituent parts of a multi-part geometry.for line in multi_line_string:
/Users/u0079358/miniconda3/lib/python3.7/site-packages/cartopy/crs.py:364: ShapelyDeprecationWarning: len for multi-part geometries is deprecated and will be removed in Shapely 2.0. Check the length of the
geoms
property instead to get the number of parts of a multi-part geometry.if len(p_mline) > 0:
/Users/u0079358/miniconda3/lib/python3.7/site-packages/cartopy/io/init.py:260: DownloadWarning: Downloading: https://naciscdn.org/naturalearth/110m/physical/ne_110m_coastline.zip
warnings.warn('Downloading: {}'.format(url), DownloadWarning)
/Users/u0079358/miniconda3/lib/python3.7/site-packages/cartopy/io/init.py:260: DownloadWarning: Downloading: https://naciscdn.org/naturalearth/110m/cultural/ne_110m_admin_1_states_provinces_lines.zip
warnings.warn('Downloading: {}'.format(url), DownloadWarning)
(base) mace-mac-07:python u0079358$
Beta Was this translation helpful? Give feedback.
All reactions