This channel features introductory Python video lessons recorded for "Methods of Oceanographic Data Analysis" (OCEAN 215), taught in Autumn 2020 in the School of Oceanography, University of Washington. For more materials, see the course website (ethan-campbell.github.io/OCEAN_215/).
Hola, la versión más reciente de Cartopy tiene problemas que no están en la lección (si usted usa Google Colab). Para instalar una versión anterior, puedes utilizar: %%capture if 'google.colab' in str(get_ipython()): !apt-get -qq remove python-shapely python3-shapely !pip install --no-binary shapely shapely --force !pip install --no-binary cartopy cartopy==0.19.0.post1 Usa esto en vez de el código en el video. Después: import cartopy, etc... Hay un tutorial bueno aquí: courses.spatialthoughts.com/python-dataviz.html#creating-maps (Perdone los errores tipográficos, el español no es mi primer idioma)