From: <js...@us...> - 2007-12-12 16:57:32
|
Revision: 4711 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4711&view=rev Author: jswhit Date: 2007-12-12 08:57:09 -0800 (Wed, 12 Dec 2007) Log Message: ----------- add plotsst.py example. Modified Paths: -------------- trunk/toolkits/basemap/MANIFEST.in trunk/toolkits/basemap/examples/README trunk/toolkits/basemap/examples/run_all.py Modified: trunk/toolkits/basemap/MANIFEST.in =================================================================== --- trunk/toolkits/basemap/MANIFEST.in 2007-12-12 16:43:29 UTC (rev 4710) +++ trunk/toolkits/basemap/MANIFEST.in 2007-12-12 16:57:09 UTC (rev 4711) @@ -43,6 +43,7 @@ include examples/geos_demo_2.py include examples/200706041200-msg-ch01-SAfrica.jpg include examples/fcstmaps.py +include examples/plotsst.py include examples/wiki_example.py include examples/fillstates.py include examples/run_all.py Modified: trunk/toolkits/basemap/examples/README =================================================================== --- trunk/toolkits/basemap/examples/README 2007-12-12 16:43:29 UTC (rev 4710) +++ trunk/toolkits/basemap/examples/README 2007-12-12 16:57:09 UTC (rev 4711) @@ -13,6 +13,9 @@ customticks.py shows how to create custom tick labels for a cylindrical projection. +plotcities.py shows how to read and plot data from a shapefile containing +Point data. + plotmap.py is the example on the matplotlib 'screenshots' page (included in test.py) which shows the ETOPO topography as an image on a Lambert Conformal projection (using imshow). @@ -52,6 +55,9 @@ fcstmaps.py is a sample multi-panel plot that accesses data over http using the dap module. An internet connection is required. +plotsst.py also uses dap client to access the data, and also illustrates +how the NetCDFFile function deals with missing values. + wiki_example.py is the example from the MatplotlibCookbook scipy wiki page (http://www.scipy.org/wikis/topical_software/MatplotlibCookbook/wikipage_view). Modified: trunk/toolkits/basemap/examples/run_all.py =================================================================== --- trunk/toolkits/basemap/examples/run_all.py 2007-12-12 16:43:29 UTC (rev 4710) +++ trunk/toolkits/basemap/examples/run_all.py 2007-12-12 16:57:09 UTC (rev 4711) @@ -2,6 +2,7 @@ test_files = glob.glob('*.py') test_files.remove('run_all.py') test_files.remove('fcstmaps.py') +test_files.remove('plotsst.py') test_files.remove('testgdal.py') test_files.remove('pnganim.py') test_files.remove('warpimage.py') This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |