Центром cartopy.crs.Stereographic
является Северный полюс для
очевидные причины, но как бы я перенести его на
широта / долгота по моему выбору, так что коробки имеют тенденцию к
что за позиция вместо северного полюса?
fig=plt.figure(figsize=(60, 28))
projection = ccrs.RotatedPole(pole_longitude=11.5, pole_latitude=79.5)
ax = plt.axes(projection=ccrs.Stereographic(central_latitude=79.0, central_longitude=11.5))
ax.set_extent([-180, 180, 30, 90], crs=ccrs.PlateCarree())
ax.coastlines()
ax.pcolormesh(lons, lats, result_array, transform=ccrs.PlateCarree())
![Centre the pole from lat=90 to lat=79, long=11.5](https://i.stack.imgur.com/MIoA1.png)
fig=plt.figure(figsize=(60, 28))
import matplotlib.pyplot as plt
import cartopy.crs as ccrs
lons = np.arange(-180, 180, 1)
lats = np.arange(0, 90, 1)
# create the projections
ortho = ccrs.Orthographic(central_longitude=11, central_latitude=79)
geo = ccrs.Geodetic()
# create the geoaxes for an orthographic projection
ax = plt.axes(projection=ortho)
# plot north pole for reference (with a projection transform)
ax.plot([0], [90], 'b^', transform=geo)
ax.pcolormesh(lons, lats, result_array, transform=ccrs.PlateCarree())
# add coastlines for reference
ax.coastlines(resolution='50m')
ax.set_global()
![enter image description here](https://i.stack.imgur.com/FZfLW.png)