From: <js...@us...> - 2007-11-06 18:56:26
|
Revision: 4128 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4128&view=rev Author: jswhit Date: 2007-11-06 10:56:21 -0800 (Tue, 06 Nov 2007) Log Message: ----------- use Shapely, libgeos for processing boundary geometries. Modified Paths: -------------- trunk/toolkits/basemap-testing/Changelog Modified: trunk/toolkits/basemap-testing/Changelog =================================================================== --- trunk/toolkits/basemap-testing/Changelog 2007-11-06 18:50:53 UTC (rev 4127) +++ trunk/toolkits/basemap-testing/Changelog 2007-11-06 18:56:21 UTC (rev 4128) @@ -1,4 +1,12 @@ version 0.9.7 (not yet released) + * use Shapely (http://trac.gispython.org/projects/PCL/wiki/Shapely) + to find geometries that are within map projection region. + This speeds up instance creation for small map regions and + high resolution coastlines. Boundary datasets now in binary + format (I/O handled by Shapely). Requires geos C++ lib + (http://geos.refractions.net/) and Shapely, which is a ctypes + interface to libgeos. + * remove all numerix imports. * fix rotate_vector so it works in S. Hem and for non-orthogonal grids. Support for masked velocity vectors also added. (EF) * numpification. (EF) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <js...@us...> - 2007-11-14 20:11:49
|
Revision: 4294 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4294&view=rev Author: jswhit Date: 2007-11-14 12:11:35 -0800 (Wed, 14 Nov 2007) Log Message: ----------- update Modified Paths: -------------- trunk/toolkits/basemap-testing/Changelog Modified: trunk/toolkits/basemap-testing/Changelog =================================================================== --- trunk/toolkits/basemap-testing/Changelog 2007-11-14 19:48:38 UTC (rev 4293) +++ trunk/toolkits/basemap-testing/Changelog 2007-11-14 20:11:35 UTC (rev 4294) @@ -1,11 +1,11 @@ version 0.9.7 (not yet released) - * use Shapely (http://trac.gispython.org/projects/PCL/wiki/Shapely) + * use a Pyrex/Cython interface to the GEOS library + (http://geos.refractions.net - LGPL license) to find geometries that are within map projection region. This speeds up instance creation for small map regions and high resolution coastlines. Boundary datasets now in binary - format (I/O handled by Shapely). Requires geos C++ lib - (http://geos.refractions.net/) and Shapely, which is a ctypes - interface to libgeos. + format (I/O is faster). Requires GEOS version 2.2.3, source + code included. * remove all numerix imports. * fix rotate_vector so it works in S. Hem and for non-orthogonal grids. Support for masked velocity vectors also added. (EF) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <js...@us...> - 2007-11-14 20:23:25
|
Revision: 4295 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4295&view=rev Author: jswhit Date: 2007-11-14 12:23:16 -0800 (Wed, 14 Nov 2007) Log Message: ----------- support for full-res coastlines. Modified Paths: -------------- trunk/toolkits/basemap-testing/Changelog Modified: trunk/toolkits/basemap-testing/Changelog =================================================================== --- trunk/toolkits/basemap-testing/Changelog 2007-11-14 20:11:35 UTC (rev 4294) +++ trunk/toolkits/basemap-testing/Changelog 2007-11-14 20:23:16 UTC (rev 4295) @@ -1,4 +1,7 @@ version 0.9.7 (not yet released) + * added support for full-resolution boundaries (will be + a separate download). + * high-resolution boundaries now included. * use a Pyrex/Cython interface to the GEOS library (http://geos.refractions.net - LGPL license) to find geometries that are within map projection region. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <js...@us...> - 2007-11-15 21:33:14
|
Revision: 4326 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4326&view=rev Author: jswhit Date: 2007-11-15 13:33:13 -0800 (Thu, 15 Nov 2007) Log Message: ----------- add full-res data files. Modified Paths: -------------- trunk/toolkits/basemap-testing/Changelog Modified: trunk/toolkits/basemap-testing/Changelog =================================================================== --- trunk/toolkits/basemap-testing/Changelog 2007-11-15 21:23:27 UTC (rev 4325) +++ trunk/toolkits/basemap-testing/Changelog 2007-11-15 21:33:13 UTC (rev 4326) @@ -1,7 +1,11 @@ version 0.9.7 (not yet released) * added support for full-resolution boundaries (will be - a separate download). + a separate download). Full-res files (totaling around + 100 mb) available in SVN. * high-resolution boundaries now included. + * postpone processing of countries, states and river + boundaries until a draw is requested. Only the + coastlines are processed in __init__. * use a Pyrex/Cython interface to the GEOS library (http://geos.refractions.net - LGPL license) to find geometries that are within map projection region. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <js...@us...> - 2007-11-16 20:17:09
|
Revision: 4344 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4344&view=rev Author: jswhit Date: 2007-11-16 12:17:05 -0800 (Fri, 16 Nov 2007) Log Message: ----------- fixed tmerc bug Modified Paths: -------------- trunk/toolkits/basemap-testing/Changelog Modified: trunk/toolkits/basemap-testing/Changelog =================================================================== --- trunk/toolkits/basemap-testing/Changelog 2007-11-16 20:16:22 UTC (rev 4343) +++ trunk/toolkits/basemap-testing/Changelog 2007-11-16 20:17:05 UTC (rev 4344) @@ -1,4 +1,8 @@ version 0.9.7 (not yet released) + * fixed a bug in the 'tmerc' projection. + * added pure python NetCDFFile reader from Roberto De Almeida + to basemap namespace + (from matplotlib.toolkits.basemap import NetCDFFile). * added support for full-resolution boundaries (will be a separate download). Full-res files (totaling around 100 mb) available in SVN. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <js...@us...> - 2007-11-20 04:09:56
|
Revision: 4386 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4386&view=rev Author: jswhit Date: 2007-11-19 20:09:55 -0800 (Mon, 19 Nov 2007) Log Message: ----------- added lake_color keyword to fillcontinents Modified Paths: -------------- trunk/toolkits/basemap-testing/Changelog Modified: trunk/toolkits/basemap-testing/Changelog =================================================================== --- trunk/toolkits/basemap-testing/Changelog 2007-11-20 04:08:52 UTC (rev 4385) +++ trunk/toolkits/basemap-testing/Changelog 2007-11-20 04:09:55 UTC (rev 4386) @@ -1,4 +1,5 @@ version 0.9.7 (not yet released) + * added lake_color keyword to fillcontinents. * fixed a bug in the 'tmerc' projection. * added pure python NetCDFFile reader from Roberto De Almeida to basemap namespace This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <js...@us...> - 2007-11-21 15:27:17
|
Revision: 4403 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4403&view=rev Author: jswhit Date: 2007-11-21 07:27:14 -0800 (Wed, 21 Nov 2007) Log Message: ----------- fixed bug in drawlsmask Modified Paths: -------------- trunk/toolkits/basemap-testing/Changelog Modified: trunk/toolkits/basemap-testing/Changelog =================================================================== --- trunk/toolkits/basemap-testing/Changelog 2007-11-21 15:24:22 UTC (rev 4402) +++ trunk/toolkits/basemap-testing/Changelog 2007-11-21 15:27:14 UTC (rev 4403) @@ -1,4 +1,6 @@ version 0.9.7 (not yet released) + * fixed bug in drawlsmask for 'moll','robin' and 'sinu' + projections. * added lake_color keyword to fillcontinents. * fixed a bug in the 'tmerc' projection. * added pure python NetCDFFile reader from Roberto De Almeida This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |