| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| basemap-1.0.7.win-amd64-py3.2.exe | 2013-08-20 | 121.6 MB | |
| basemap-1.0.7.win-amd64-py2.7.exe | 2013-08-20 | 121.6 MB | |
| basemap-1.0.7.win-amd64-py2.6.exe | 2013-08-20 | 121.6 MB | |
| basemap-1.0.7.win-amd64-py3.3.exe | 2013-08-20 | 121.6 MB | |
| basemap-1.0.7.win32-py2.6.exe | 2013-08-20 | 121.5 MB | |
| basemap-1.0.7.win32-py3.2.exe | 2013-08-20 | 121.5 MB | |
| basemap-1.0.7.win32-py2.7.exe | 2013-08-20 | 121.5 MB | |
| basemap-1.0.7.win32-py3.3.exe | 2013-08-20 | 121.5 MB | |
| README | 2013-08-17 | 3.1 kB | |
| basemap-1.0.7.tar.gz | 2013-08-17 | 129.7 MB | |
| Totals: 10 Items | 1.1 GB | 5 | |
version 1.0.7 (git tag v1.0.7rel)
---------------------------------
* include mpl_toolkits/__init__.py, since the one installed by matplotlib
is now inaccessible inside an egg (in 1.4.x). Make basemap a 'namespace
package'. Issue 114.
* fix drawmeridians so meridians reach edge of plot when map projection region
is *very* small (issue 113).
* update pyproj (with fixes to geodesic calculations).
* support for rotated pole transformation (projection = 'rotpole').
* fix warpimage with projection = 'hammer' (issue 100).
* fix tolerances for detecting jumps in meridians and parallels for
cyl and rotpole projections (issue 108).
* fix clipping to map projection region done in contourf and contour methods
so it doesn't assume x and y are increasing (issue 110).
version 1.0.6 (git tag v1.0.6rel)
--------------------------------
* fix drawcounties for Python 3.3.
* update pyproj to version 1.9.3 (remove geographiclib python code, replace
with C code from proj4).
* in contourf and contour, all points outside the map projection
region were masked. This meant that if a grid cell was partly inside and partly
outside the map projection region, nothing was drawn, leaving a gap along the
edge of the map. This was particularly noticeable for very coarse resolution grids.
This commit only masks those points more than one grid length beyond the edge
of the map projection region. Fixes issue 88.
* allow for latitude values slightly greater than 90 to exist in shapefiles,
(by truncating to 90). Still raise exception if latitude exceeds 90.01.
* added 'wmsimage' method for displaying background image retrieved from
a OGC-compliant WMS server using OWSLib (http://pypi.python.org/OWSLib)
(requires using 'epsg' keyword to define projection).
* fix drawing of meridians and parallels for very small map regions
(issue 79).
* add module variable 'latlon_default' that can be used to switch
default value of latlon kwarg to True so plotting methods can be
passed lats and lons (geographic coordinatsin degrees) instead
of x,y (projection coordinates).
* have drawcoastlines use line segments instead of coastline polygons, to
avoid 'thickening' of lines around edges of map.
* added support for cylindrical equal area ('cea') projection.
* add 'arcgisimage' method for displaying background image retrieved from
an ArcGIS server using the REST API
(requires using 'epsg' keyword to define projection).
* add 'epsg' keyword for defining projections.
* add 'ellps' keyword (rsphere ignored if ellps given).
* fixed shiftdata method so it shifts mask along with data
(https://github.com/matplotlib/basemap/pull/68).
* added linestyle keyword to all draw* methods.
* added 'drawcounties' method (https://github.com/matplotlib/basemap/pull/65)
thanks to Patrick Marsh.
* fix bug that caused plotting to fail when latlon keyword is
explicitly set to False (https://github.com/matplotlib/basemap/pull/66).
* add latlon keyword to plot and scatter methods
(https://github.com/matplotlib/basemap/pull/64).