About 533,000 results
Open links in new tab
  1. python 3.x - How can one set cartopy's Gridline label styles (major ...

    I am having serious difficulties in setting the Text styles of the xlabels and ylabels from the cartopy's gridlines. When I follow the example given the cartopy's website, everything goes …

  2. Mask Ocean or Land from data using Cartopy - Stack Overflow

    Apr 10, 2016 · I would like to mask the Land area from Sea Surface Temperature Data over the globe. I am using Cartopy to plot the data. import numpy as np import matplotlib.pyplot as plt …

  3. Download data from Natural Earth and OpenStreetMap for Cartopy

    I had Faced similar issue wherein, with cartopy, the plt.gca ().coastlines () was triggering the download of a zip file from external server, but the download was failing as internet …

  4. python - How to make Cartopy gridline labels show with Lambert ...

    Oct 11, 2021 · I am trying to plot a map in a Lambert Conformal Projection, using Cartopy version 0.18. In the code below, I define my projection and plot the axes. I then add gridlines and grid …

  5. How can I show a km ruler on a cartopy / matplotlib plot?

    Sep 1, 2015 · How can I show a km ruler for a zoomed in section of a map, either inset in the image or as rulers on the side of the plot? E.g. something like the 50 km bar on the side (left) …

  6. cartopy - set_extent () extending requested boundary

    Apr 18, 2017 · This method is preferred in cartopy because it avoids having to use the set_xlim / set_ylim which always operate in projection coordinates, which can be the cause of much …

  7. python - Increasing resolution of Cartopy stock background ...

    Feb 25, 2019 · Increasing resolution of Cartopy stock background? Ask Question Asked 6 years, 9 months ago Modified 2 years, 1 month ago

  8. How to put a label on a country with Python cartopy?

    Using python3 and cartopy, having this code: import matplotlib.pyplot as plt import cartopy import cartopy.io.shapereader as shpreader import cartopy.crs as ccrs ax = plt.axes(projection=ccrs.

  9. matplotlib - Adding gridlines using Cartopy - Stack Overflow

    Apr 21, 2018 · Update: Cartopy's gridliner dateline issue noted below has been fixed at some point, so either of the below code solutions should now give the desired outcome. Is the …

  10. python - County boarders in Cartopy - Stack Overflow

    How do you plot US county borders in Cartopy? It's very straight forward to plot state and country boundaries ax.add_feature(cfeature.BORDERS.with_scale('50m')) …