Revision: 4274
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4274&view=rev
Author: jswhit
Date: 2007-11-14 08:29:24 -0800 (Wed, 14 Nov 2007)
Log Message:
-----------
support for full-res datasets.
Modified Paths:
--------------
trunk/toolkits/basemap-testing/utils/dumpbounds.sh
trunk/toolkits/basemap-testing/utils/readboundaries.py
Modified: trunk/toolkits/basemap-testing/utils/dumpbounds.sh
===================================================================
--- trunk/toolkits/basemap-testing/utils/dumpbounds.sh 2007-11-14 16:27:55 UTC (rev 4273)
+++ trunk/toolkits/basemap-testing/utils/dumpbounds.sh 2007-11-14 16:29:24 UTC (rev 4274)
@@ -10,7 +10,9 @@
pscoast -M -Dh -R0/360/-90/90 -N2 -JQ180/4.5i -W -A${area} > states_h.txt
pscoast -M -Df -R0/360/-90/90 -N1 -JQ180/4.5i -W -A${area} > countries_f.txt
pscoast -M -Df -R0/360/-90/90 -N2 -JQ180/4.5i -W -A${area} > states_f.txt
+pscoast -M -Dh -R0/360/-90/90 -N2 -JQ180/4.5i -W -A${area} > states_h.txt
pscoast -M -Dc -R0/360/-90/90 -Ir -JQ180/4.5i -W -A${area} > rivers_c.txt
pscoast -M -Dl -R0/360/-90/90 -Ir -JQ180/4.5i -W -A${area} > rivers_l.txt
pscoast -M -Di -R0/360/-90/90 -Ir -JQ180/4.5i -W -A${area} > rivers_i.txt
pscoast -M -Dh -R0/360/-90/90 -Ir -JQ180/4.5i -W -A${area} > rivers_h.txt
+pscoast -M -Dh -R0/360/-90/90 -Ir -JQ180/4.5i -W -A${area} > rivers_f.txt
Modified: trunk/toolkits/basemap-testing/utils/readboundaries.py
===================================================================
--- trunk/toolkits/basemap-testing/utils/readboundaries.py 2007-11-14 16:27:55 UTC (rev 4273)
+++ trunk/toolkits/basemap-testing/utils/readboundaries.py 2007-11-14 16:29:24 UTC (rev 4274)
@@ -93,7 +93,7 @@
return polybounds2, polymeta
# read in coastline data (only those polygons whose area > area_thresh).
-for resolution in ['c','l','i','h']:
+for resolution in ['c','l','i','h','f']:
coastlons = []; coastlats = []; coastsegind = []; coastsegtype = []
coastfile = 'gshhs_'+resolution+'.txt'
countryfile = 'countries_'+resolution+'.txt'
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|