<div dir="ltr"><div>Indeed, that is obviously wrong. Could you file a bug report up on basemap's github page? Basemap is now under new management, so I will see what I can do to address the problem for you.<br><br></div><div>Cheers!<br></div>Ben Root<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Apr 8, 2016 at 7:49 PM, Don Morton <span dir="ltr"><<a href="mailto:don.morton@borealscicomp.com" target="_blank">don.morton@borealscicomp.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello,<br>
<br>
I could easily be doing something wrong.  I posted this issue about two<br>
years ago and never saw a response, so I'll try again.  It's more of an<br>
academic question - I can work around the issue.  In the following code, I'm<br>
trying to plot a regional ortho projection over central Europe (I've<br>
commented out the global projection), and then trying to use a bluemarble<br>
background.  As you can see from the attached image, global bluemarble<br>
background is plotted, not a regional one.  This also happens with<br>
shadedrelief and etopo.<br>
<br>
<<a href="http://matplotlib.1069221.n5.nabble.com/file/n46944/ortho.png" rel="noreferrer" target="_blank">http://matplotlib.1069221.n5.nabble.com/file/n46944/ortho.png</a>><br>
<br>
import mpl_toolkits.basemap as bm<br>
import matplotlib.pyplot as plt<br>
import numpy as np<br>
<br>
"""<br>
theMap = bm.Basemap(projection='ortho',<br>
                    lat_0=48.2, lon_0=16.4)<br>
"""<br>
<br>
theMap = bm.Basemap(projection='ortho',<br>
                    lat_0=48.2, lon_0=16.4,<br>
                    llcrnry=-1000000.0, llcrnrx=-1000000.0,<br>
                    urcrnry=1000000.0, urcrnrx=1000000.0,<br>
                    resolution='l', area_thresh=1000)<br>
<br>
theMap.drawcoastlines()<br>
theMap.bluemarble()<br>
<br>
plt.show()<br>
<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://matplotlib.1069221.n5.nabble.com/Blue-marble-doesn-t-map-to-regional-ortho-projection-correctly-tp46944.html" rel="noreferrer" target="_blank">http://matplotlib.1069221.n5.nabble.com/Blue-marble-doesn-t-map-to-regional-ortho-projection-correctly-tp46944.html</a><br>
Sent from the matplotlib - users mailing list archive at Nabble.com.<br>
_______________________________________________<br>
Matplotlib-users mailing list<br>
<a href="mailto:Matplotlib-users@python.org">Matplotlib-users@python.org</a><br>
<a href="https://mail.python.org/mailman/listinfo/matplotlib-users" rel="noreferrer" target="_blank">https://mail.python.org/mailman/listinfo/matplotlib-users</a><br>
</blockquote></div><br></div>