You have &#39;spherical mercator=true&#39; which means your bounding box needs to match units (meters) and location for spherical mercator projection (meters), rather than the lat/lon bbox you are using.  So you will want to transform your bbox of interest from lat/lon (probably epsg:4326) to spherical mercator (epsg:900913) and use the resulting bbox.<br>
<br>you can do this in openlayers if you want.  For example, you could go to <a href="http://openlayers.org">openlayers.org</a> and zoom to about the US and type this into firebug:<br>map.getExtent().transform(new OpenLayers.Projection(&#39;EPSG:4326&#39;), new OpenLayers.Projection(&#39;EPSG:900913&#39;))<br>
<br>Cheers,<br><br clear="all">  -Josh<br>
<br><br><div class="gmail_quote">On Mon, Jun 1, 2009 at 11:09 AM, Chad Clabaugh <span dir="ltr">&lt;<a href="mailto:cclabaugh@centwire.com">cclabaugh@centwire.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">









<div link="blue" vlink="purple" lang="EN-US">

<div>

<p>I am getting the following output when I try to seed my
tiles using a bounding box surrounding the continental united states…</p>

<p> </p>

<p>linux: # python tilecache_seed.py vmap0 5 12 -b
&quot;-125,24,-66,49.5&quot; -f</p>

<p>###### (16, 16, 5), (16, 16, 5)</p>

<p>Cache miss: -0.000799998641014,-0.000799998641014,1252344.2704,1252344.2704,
Tile: x: 16, y: 16, z: 5, time: 0.239030122757</p>

<p>05 (000016, 000016) = (-0.0008 -0.0008 1252344.2704
1252344.2704) [0.2391s : 4.178/s] 1/0</p>

<p>###### (32, 32, 6), (32, 32, 6)</p>

<p>Cache miss: -0.000799998641014,-0.000799998641014,626172.1348,626172.1348,
Tile: x: 32, y: 32, z: 6, time: 0.21990609169</p>

<p>06 (000032, 000032) = (-0.0008 -0.0008 626172.1348
626172.1348) [0.2202s : 4.351/s] 1/0</p>

<p>###### (64, 64, 7), (64, 64, 7)</p>

<p>Cache miss:
-0.000799998641014,-0.000799998641014,313086.067,313086.067, Tile: x: 64, y:
64, z: 7, time: 0.21994304657</p>

<p>07 (000064, 000064) = (-0.0008 -0.0008 313086.0670
313086.0670) [0.2202s : 4.411/s] 1/0</p>

<p>###### (128, 128, 8), (128, 128, 8)</p>

<p>Cache miss:
-0.000799998641014,-0.000799998641014,156543.0331,156543.0331, Tile: x: 128, y:
128, z: 8, time: 0.220010042191</p>

<p>08 (000128, 000128) = (-0.0008 -0.0008 156543.0331
156543.0331) [0.2203s : 4.442/s] 1/0</p>

<p>###### (256, 256, 9), (256, 256, 9)</p>

<p>Cache miss:
-0.000799998641014,-0.000799998641014,78271.51615,78271.51615, Tile: x: 256, y:
256, z: 9, time: 0.219614982605</p>

<p>09 (000256, 000256) = (-0.0008 -0.0008 78271.5162
78271.5162) [0.2199s : 4.462/s] 1/0</p>

<p>###### (512, 512, 10), (512, 512, 10)</p>

<p>Cache miss: -0.000799998641014,-0.000799998641014,39135.757675,39135.757675,
Tile: x: 512, y: 512, z: 10, time: 0.220409154892</p>

<p>10 (000512, 000512) = (-0.0008 -0.0008 39135.7577
39135.7577) [0.2207s : 4.473/s] 1/0</p>

<p>###### (1024, 1024, 11), (1024, 1024, 11)</p>

<p>Cache miss: -0.000799998641014,-0.000799998641014,19567.8784375,19567.8784375,
Tile: x: 1024, y: 1024, z: 11, time: 0.21924996376</p>

<p>11 (001024, 001024) = (-0.0008 -0.0008 19567.8784
19567.8784) [0.2195s : 4.484/s] 1/0</p>

<p> </p>

<p>And here is my config…</p>

<p> </p>

<p>[vmap0]</p>

<p>type=MapServerLayer</p>

<p>layers=coverage</p>

<p>bbox=-125,24,-66,49.5</p>

<p>mapfile=/srv/www/htdocs/mapserver/ftw.map</p>

<p>metaTile=true</p>

<p>metaSize=2,2</p>

<p>metabuffer=0,500</p>

<p>spherical_mercator=true</p>

<p>srs=EPSG:4326</p>

<p> </p>

<p>Any thoughts as to what I may be doing wrong?  Thanks!</p>

<p> </p>

<p> </p>

<p><span style="font-size: 14pt; color: rgb(54, 95, 145);">Chad Clabaugh</span></p>

<p><span style="font-size: 9pt;">Mobile: 260.466.8861</span></p>

<p> </p>

</div>

</div>


<br>_______________________________________________<br>
Tilecache mailing list<br>
<a href="mailto:Tilecache@openlayers.org">Tilecache@openlayers.org</a><br>
<a href="http://openlayers.org/mailman/listinfo/tilecache" target="_blank">http://openlayers.org/mailman/listinfo/tilecache</a><br>
<br></blockquote></div><br>