From: <js...@us...> - 2007-11-07 18:19:19
|
Revision: 4147 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4147&view=rev Author: jswhit Date: 2007-11-07 10:19:18 -0800 (Wed, 07 Nov 2007) Log Message: ----------- update high-res dataset install instructions. Modified Paths: -------------- trunk/toolkits/basemap-testing/README Modified: trunk/toolkits/basemap-testing/README =================================================================== --- trunk/toolkits/basemap-testing/README 2007-11-07 18:13:25 UTC (rev 4146) +++ trunk/toolkits/basemap-testing/README 2007-11-07 18:19:18 UTC (rev 4147) @@ -66,10 +66,14 @@ boundary data files, plus the 5-minute land/sea mask, are installed by default. If you need the high ('h') resolution boundary dataset you can download the files from the sourceforge download site -(basemap-data-hires-X.Y.Z.tar.gz) and manually install them. -To see where basemap expects them to be installed, run -python -c "from matplotlib.toolkits.basemap import basemap_datadir; print basemap_datadir". +(basemap-data-hires-X.Y.Z.tar.gz). To install them, +untar the file in the top-level directory of the basemap source +distribution (where this README file lives), then run +'python setup.py install' again. +Note: if you install from a subversion checkout, you will get the high +resolution coastlines by default. + **Contact** Jeff Whitaker <jef...@no...> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <js...@us...> - 2007-11-07 18:30:17
|
Revision: 4150 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4150&view=rev Author: jswhit Date: 2007-11-07 10:30:09 -0800 (Wed, 07 Nov 2007) Log Message: ----------- add Shapely as a Requirement. Modified Paths: -------------- trunk/toolkits/basemap-testing/README Modified: trunk/toolkits/basemap-testing/README =================================================================== --- trunk/toolkits/basemap-testing/README 2007-11-07 18:23:26 UTC (rev 4149) +++ trunk/toolkits/basemap-testing/README 2007-11-07 18:30:09 UTC (rev 4150) @@ -1,13 +1,20 @@ **Descripton** -basemap.py - plot on map projections (with coastlines and political boundaries) +basemap - plot on map projections (with coastlines and political boundaries) using matplotlib. **Requirements** matplotlib 0.90 (or higher) + numpy 1.0 (or higher) +Shapely (http://trac.gispython.org/projects/PCL/wiki/Shapely - svn version) + +Shapely requires libgoes_c version 2.2.3, available from +http://geos.refractions.net/, and ctypes (which comes with python >= 2.5, +but can be installed separately for python 2.4) + **Copyright** source code from proj.4 (http://proj.maptools.org) is included in the @@ -53,15 +60,12 @@ **Install** -To install from source, download basemap-X.Y.Z.tar.gz from +First, install pre-requisites (see **Requirements** above). + +Then download basemap-X.Y.Z.tar.gz from the sourceforge download site, unpack, cd to basemap-X.Y.Z and run 'python setup.py install'. -Binary, double-clickable installers are also provided for MacOS X and -Windows. The Mac installers have a .dmg file extension, the Windows -installers have a .exe extension. Windows users will probably prefer -s option, since it is non-trivial to build C extensions for python on Windows. - The crude ('c'), low ('l') and intermediate ('i') resolution boundary data files, plus the 5-minute land/sea mask, are installed by default. If you need the high ('h') resolution boundary dataset This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <js...@us...> - 2007-11-07 18:34:32
|
Revision: 4151 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4151&view=rev Author: jswhit Date: 2007-11-07 10:34:30 -0800 (Wed, 07 Nov 2007) Log Message: ----------- update Copyright Modified Paths: -------------- trunk/toolkits/basemap-testing/README Modified: trunk/toolkits/basemap-testing/README =================================================================== --- trunk/toolkits/basemap-testing/README 2007-11-07 18:30:09 UTC (rev 4150) +++ trunk/toolkits/basemap-testing/README 2007-11-07 18:34:30 UTC (rev 4151) @@ -32,9 +32,10 @@ http://www.ngdc.noaa.gov/seg/cdroms/graham/graham/graham.htm is included. -Everything else (include src/pyproj.pyx and src/pyproj.c): +Everything else (including src/_proj.pyx, src/_geod.pyx, src/_pyproj.pxi, +src/_proj.c and src/_geod.c): -copyright (c) 2004 by Jeffrey Whitaker. +copyright (c) 2007 by Jeffrey Whitaker. Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <js...@us...> - 2007-11-10 17:52:20
|
Revision: 4209 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4209&view=rev Author: jswhit Date: 2007-11-10 09:52:19 -0800 (Sat, 10 Nov 2007) Log Message: ----------- update install instructions Modified Paths: -------------- trunk/toolkits/basemap-testing/README Modified: trunk/toolkits/basemap-testing/README =================================================================== --- trunk/toolkits/basemap-testing/README 2007-11-10 17:25:15 UTC (rev 4208) +++ trunk/toolkits/basemap-testing/README 2007-11-10 17:52:19 UTC (rev 4209) @@ -67,18 +67,6 @@ the sourceforge download site, unpack, cd to basemap-X.Y.Z and run 'python setup.py install'. -The crude ('c'), low ('l') and intermediate ('i') resolution -boundary data files, plus the 5-minute land/sea mask, are installed -by default. If you need the high ('h') resolution boundary dataset -you can download the files from the sourceforge download site -(basemap-data-hires-X.Y.Z.tar.gz). To install them, -untar the file in the top-level directory of the basemap source -distribution (where this README file lives), then run -'python setup.py install' again. - -Note: if you install from a subversion checkout, you will get the high -resolution coastlines by default. - **Contact** Jeff Whitaker <jef...@no...> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <js...@us...> - 2007-11-12 16:57:49
|
Revision: 4227 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4227&view=rev Author: jswhit Date: 2007-11-12 08:57:45 -0800 (Mon, 12 Nov 2007) Log Message: ----------- update install instructions Modified Paths: -------------- trunk/toolkits/basemap-testing/README Modified: trunk/toolkits/basemap-testing/README =================================================================== --- trunk/toolkits/basemap-testing/README 2007-11-12 16:54:58 UTC (rev 4226) +++ trunk/toolkits/basemap-testing/README 2007-11-12 16:57:45 UTC (rev 4227) @@ -9,9 +9,7 @@ numpy 1.0 (or higher) -Shapely (http://trac.gispython.org/projects/PCL/wiki/Shapely - svn version) - -Shapely requires libgoes_c version 2.2.3, available from +libgoes_c version 2.2.3, available from http://geos.refractions.net/, and ctypes (which comes with python >= 2.5, but can be installed separately for python 2.4) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <js...@us...> - 2007-11-12 17:00:27
|
Revision: 4228 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4228&view=rev Author: jswhit Date: 2007-11-12 09:00:25 -0800 (Mon, 12 Nov 2007) Log Message: ----------- update licensing info Modified Paths: -------------- trunk/toolkits/basemap-testing/README Modified: trunk/toolkits/basemap-testing/README =================================================================== --- trunk/toolkits/basemap-testing/README 2007-11-12 16:57:45 UTC (rev 4227) +++ trunk/toolkits/basemap-testing/README 2007-11-12 17:00:25 UTC (rev 4228) @@ -21,6 +21,10 @@ pyshapelib by Bernhard Herzog is included in the 'pyshapelib' directory under the terms given in LICENSE_pyshapelib. +The Shapely module (http://trac.gispython.org/projects/PCL/wiki/Shapely) by +Sean Gillies is included in the 'lib/shapely' directory under the terms +given in LICENSE_shapely. + the coastline, lake, river and political boundary data are extracted from datasets provided with the Generic Mapping Tools (http://gmt.soest.hawaii.edu) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <js...@us...> - 2007-11-12 17:03:33
|
Revision: 4230 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4230&view=rev Author: jswhit Date: 2007-11-12 09:03:28 -0800 (Mon, 12 Nov 2007) Log Message: ----------- updated Requirements Modified Paths: -------------- trunk/toolkits/basemap-testing/README Modified: trunk/toolkits/basemap-testing/README =================================================================== --- trunk/toolkits/basemap-testing/README 2007-11-12 17:00:55 UTC (rev 4229) +++ trunk/toolkits/basemap-testing/README 2007-11-12 17:03:28 UTC (rev 4230) @@ -5,14 +5,18 @@ **Requirements** +python 2.4 or higher. + matplotlib 0.90 (or higher) numpy 1.0 (or higher) -libgoes_c version 2.2.3, available from -http://geos.refractions.net/, and ctypes (which comes with python >= 2.5, -but can be installed separately for python 2.4) +libgoes_c version 2.2.3, available from http://geos.refractions.net/. +ctypes (which comes with python >= 2.5, +but can be installed separately for python 2.4 from +http:/python.org/pypi/ctypes). + **Copyright** source code from proj.4 (http://proj.maptools.org) is included in the This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <js...@us...> - 2007-11-13 22:26:06
|
Revision: 4258 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4258&view=rev Author: jswhit Date: 2007-11-13 14:26:02 -0800 (Tue, 13 Nov 2007) Log Message: ----------- update Requirements Modified Paths: -------------- trunk/toolkits/basemap-testing/README Modified: trunk/toolkits/basemap-testing/README =================================================================== --- trunk/toolkits/basemap-testing/README 2007-11-13 22:23:33 UTC (rev 4257) +++ trunk/toolkits/basemap-testing/README 2007-11-13 22:26:02 UTC (rev 4258) @@ -5,8 +5,6 @@ **Requirements** -python 2.4 or higher. - matplotlib 0.90 (or higher) numpy 1.0 (or higher) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <js...@us...> - 2007-11-13 23:11:33
|
Revision: 4261 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4261&view=rev Author: jswhit Date: 2007-11-13 15:11:28 -0800 (Tue, 13 Nov 2007) Log Message: ----------- fix typo Modified Paths: -------------- trunk/toolkits/basemap-testing/README Modified: trunk/toolkits/basemap-testing/README =================================================================== --- trunk/toolkits/basemap-testing/README 2007-11-13 23:03:46 UTC (rev 4260) +++ trunk/toolkits/basemap-testing/README 2007-11-13 23:11:28 UTC (rev 4261) @@ -29,7 +29,7 @@ is included. Everything else (including src/_proj.pyx, src/_geod.pyx, src/_pyproj.pxi, -src/_proj.c and src/_geod.c, src/_geos.c, src/_geos.pyx): +src/_proj.c, src/_geod.c, src/_geos.c, and src/_geos.pyx): copyright (c) 2007 by Jeffrey Whitaker. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <js...@us...> - 2007-11-14 13:09:16
|
Revision: 4266 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4266&view=rev Author: jswhit Date: 2007-11-14 05:09:14 -0800 (Wed, 14 Nov 2007) Log Message: ----------- updated install instructions. Modified Paths: -------------- trunk/toolkits/basemap-testing/README Modified: trunk/toolkits/basemap-testing/README =================================================================== --- trunk/toolkits/basemap-testing/README 2007-11-14 13:05:06 UTC (rev 4265) +++ trunk/toolkits/basemap-testing/README 2007-11-14 13:09:14 UTC (rev 4266) @@ -60,8 +60,11 @@ First, install pre-requisites (see **Requirements** above). Then download basemap-X.Y.Z.tar.gz from -the sourceforge download site, unpack, -cd to basemap-X.Y.Z and run 'python setup.py install'. +the sourceforge download site, unpack and cd to basemap-X.Y.Z. +Set the environment variable GEOS_DIR to point to the location +of libgeos_c and geos_c.h (if libgeos_c is in /usr/local/lib and +geos_c.h is in /usr/local/include, set GEOS_DIR to /usr/local). +Then run 'python setup.py install'. **Contact** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <js...@us...> - 2007-11-15 13:19:17
|
Revision: 4299 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4299&view=rev Author: jswhit Date: 2007-11-15 05:19:14 -0800 (Thu, 15 Nov 2007) Log Message: ----------- updated install instructions for MacOS X Modified Paths: -------------- trunk/toolkits/basemap-testing/README Modified: trunk/toolkits/basemap-testing/README =================================================================== --- trunk/toolkits/basemap-testing/README 2007-11-14 22:58:40 UTC (rev 4298) +++ trunk/toolkits/basemap-testing/README 2007-11-15 13:19:14 UTC (rev 4299) @@ -84,6 +84,26 @@ 3) cd back to the top level basemap directory (basemap-X.Y.Z) and run the usual 'python setup.py install'. +Note for Mac OS X users: +----------------------- +On intel, your build may fail with a message like this: + +/usr/bin/ld: for architecture ppc /usr/bin/ld: warning +/sw/lib/libgeos_c.dylib cputype (7, architecture i386) does not match +cputype (18) for specified -arch flag: ppc (file not loaded) lipo: can't +open input file: /var/tmp//ccJKju2Z.out (No such file or directory) +error: Command "gcc -arch i386 -arch ppc -isysroot +/Developer/SDKs/MacOSX10.4u.sdk -g -bundle -undefined dynamic_lookup +build/temp.macosx-10.3-fat-2.4/src/_geos.o -L/sw/lib -L/sw/lib -lgeos_c +-o build/lib.macosx-10.3-fat-2.4/_geos.so" failed with exit status 1 + +If so, just cut and past the gcc command in double quotes, removing the +'-arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk' flags. Then run +'setup.py install' again to finish the build. + +On ppc, there may be a similar failure, but remove the '-arch i386' flag +instead. + **Contact** Jeff Whitaker <jef...@no...> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <js...@us...> - 2007-11-15 17:23:08
|
Revision: 4310 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4310&view=rev Author: jswhit Date: 2007-11-15 09:23:03 -0800 (Thu, 15 Nov 2007) Log Message: ----------- MacOS X warning no longer needed. Modified Paths: -------------- trunk/toolkits/basemap-testing/README Modified: trunk/toolkits/basemap-testing/README =================================================================== --- trunk/toolkits/basemap-testing/README 2007-11-15 17:17:02 UTC (rev 4309) +++ trunk/toolkits/basemap-testing/README 2007-11-15 17:23:03 UTC (rev 4310) @@ -78,32 +78,12 @@ > export GEOS_DIR=<where you want the libs and headers to go> A reasonable choice on a Unix-like system is /usr/local, or if you don't have permission to write there, your home directory. - > ./configure --prefix=$GEOS_DIR + > ./configure --prefix=$GEOS_DIR > make; make install 3) cd back to the top level basemap directory (basemap-X.Y.Z) and run the usual 'python setup.py install'. -Note for Mac OS X users: ------------------------ -On intel, your build may fail with a message like this: - -/usr/bin/ld: for architecture ppc /usr/bin/ld: warning -/sw/lib/libgeos_c.dylib cputype (7, architecture i386) does not match -cputype (18) for specified -arch flag: ppc (file not loaded) lipo: can't -open input file: /var/tmp//ccJKju2Z.out (No such file or directory) -error: Command "gcc -arch i386 -arch ppc -isysroot -/Developer/SDKs/MacOSX10.4u.sdk -g -bundle -undefined dynamic_lookup -build/temp.macosx-10.3-fat-2.4/src/_geos.o -L/sw/lib -L/sw/lib -lgeos_c --o build/lib.macosx-10.3-fat-2.4/_geos.so" failed with exit status 1 - -If so, just cut and past the gcc command in double quotes, removing the -'-arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk' flags. Then run -'setup.py install' again to finish the build. - -On ppc, there may be a similar failure, but remove the '-arch i386' flag -instead. - **Contact** Jeff Whitaker <jef...@no...> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <js...@us...> - 2007-11-17 14:40:03
|
Revision: 4355 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4355&view=rev Author: jswhit Date: 2007-11-17 06:40:01 -0800 (Sat, 17 Nov 2007) Log Message: ----------- instructions for installing full-res data Modified Paths: -------------- trunk/toolkits/basemap-testing/README Modified: trunk/toolkits/basemap-testing/README =================================================================== --- trunk/toolkits/basemap-testing/README 2007-11-17 14:10:29 UTC (rev 4354) +++ trunk/toolkits/basemap-testing/README 2007-11-17 14:40:01 UTC (rev 4355) @@ -84,6 +84,10 @@ 3) cd back to the top level basemap directory (basemap-X.Y.Z) and run the usual 'python setup.py install'. +4) if you want the full-resolution coastlines, download +basemap-data-fullres-X.Y.Z.tar.gz (about 70 mb), untar +it in the top level basemap directory and run setup.py install again. + **Contact** Jeff Whitaker <jef...@no...> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <js...@us...> - 2007-11-17 18:54:41
|
Revision: 4366 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4366&view=rev Author: jswhit Date: 2007-11-17 10:54:40 -0800 (Sat, 17 Nov 2007) Log Message: ----------- update full-res data install instructions. Modified Paths: -------------- trunk/toolkits/basemap-testing/README Modified: trunk/toolkits/basemap-testing/README =================================================================== --- trunk/toolkits/basemap-testing/README 2007-11-17 18:49:55 UTC (rev 4365) +++ trunk/toolkits/basemap-testing/README 2007-11-17 18:54:40 UTC (rev 4366) @@ -86,7 +86,8 @@ 4) if you want the full-resolution coastlines, download basemap-data-fullres-X.Y.Z.tar.gz (about 70 mb), untar -it in the top level basemap directory and run setup.py install again. +it, cd into basemap-data-fullres-X.Y.Z and +run 'python setup-data.py install'. **Contact** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |