I am creating projections centered around various locations:

m = Basemap(width=best_width, height=best_height, lon_0=centerLon
lat_0=centerLat, resolution='c',area_thresh=10000.,projection='laea')

For every location, i have the same code to fill the regions:
 
m.fillcontinents(color='#997766',lake_color='#99ffff',zorder=1)
> m.drawcoastlines(color='#000000', zorder=3)
> m.drawcountries(color="0.75", zorder=2)
> m.drawmapboundary(fill_color='#99ffff', zorder=0)
> 
For most regions, this results in the expected plot (
http://www.nabble.com/file/p23451317/good.png good.png )
However, whenever the region includes South America/Antarctica,
fillcontinents will color the entire map (
http://www.nabble.com/file/p23451317/bad.png bad.png )

Is this a known issue, and is there a way to circumvent it?

Thanks,
Jon

-- 
View this message in context: 
http://www.nabble.com/Basemap---fillcontinents-fills-entire-map-region-in-some-cases-tp23451317p23451317.html
Sent from the matplotlib - users mailing list archive at Nabble.com.


------------------------------------------------------------------------------
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image 
processing features enabled. http://p.sf.net/sfu/kodak-com
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to