Apologies for repeating this posting, but I realize I probably didn&#39;t do a good job of explaining the problem before.&nbsp; Basically it appears that Tilecache is making requests for tiles with extents that a WMS service cannot fill under certain conditions.&nbsp; The result manifests itself as weird horizontal stripes across various parts of my Google Map, with the location of the stripe varying depending on the Zoom level of the map.&nbsp; I have posted screenshots of the problem <a href="http://lagerratrobe.blogspot.com/2008/11/strange-tilecache-artifacts.html">here</a>.&nbsp; <br>
<br>As one of the most noticeable stripes occurs at Zoom Level 2, I was able to find the actual TileCache WMS request in my Apache logs.&nbsp; It looks like this:<br><a href="http://localhost/cgi-bin/mapserv?map=/var/www/mapfiles/test/test.map&amp;layers=imagery&amp;srs=EPSG%3A900913&amp;version=1.1.1&amp;bbox=-20037508.34%2C-20037508.34%2C-10018754.1704%2C-10018754.1704&amp;service=WMS&amp;width=256&amp;styles=&amp;format=image%2Fpng&amp;request=GetMap&amp;height=256">http://localhost/cgi-bin/mapserv?map=/var/www/mapfiles/test/test.map&amp;layers=imagery&amp;srs=EPSG%3A900913&amp;version=1.1.1&amp;bbox=-20037508.34%2C-20037508.34%2C-10018754.1704%2C-10018754.1704&amp;service=WMS&amp;width=256&amp;styles=&amp;format=image%2Fpng&amp;request=GetMap&amp;height=256</a><br>
<br>When that request is made, the tile at the bottom of the sample page I&#39;ve linked to above is returned.&nbsp; You can see that the bottom few rows of pixels contain only background color, making the stripe that runs across the example screenshots.<br>
<br>I figure there are a couple possibilities for why this problem is ocurring.<br><br>1) TileCache is specifying an incorrect bbox size when it makes a WMS request for the tile.<br>2) The projection definition for epsg 900913 is incorrect in some way, and the reprojection from 4326 to 900913 is flawed.<br>
<br>Either way, it makes it difficult to display rasters with large extents.&nbsp; One element that I can eliminate though is the renderer.&nbsp; The flaw is reproducible using various versions of Mapserver, as well as Mapnik.<br><br>
I would love to actually have a chance to discuss this problem, and will gladly provide any additional information upon request.<br><br>Roger<br>--<br>Just in case someone else wants to see this for themselves, here are the steps needed to replicate the condition I&#39;m seeing.<br>
<br>Step 1.&nbsp; Create a large rectangular image of Size 14400 x 7200.<br>
<br>
Step 2.&nbsp; Assign georeferencing to the image:<br>
gdal_translate -a_ullr -180 90 180 -90 -a_srs &quot;EPSG:4326&quot; big_black.tif wgs84_big_black.tif<br>
<br>
Step 3. Load this image into some sort of WMS rendering system and assign a background color value of red to it.<br>
<br>
Step 4. Make sure you have the spherical mercator projection defined in your epsg file.<br>
&lt;900913&gt; +proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0
+x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs &lt;&gt;<br>
<br>
Step 5. Make a WMS request for a tile that replicates one that TileCache makes:<br>
<a href="http://localhost/cgi-bin/mapserv?map=/var/www/mapfiles/test/test.map" target="_blank">http://localhost/cgi-bin/mapserv?map=/var/www/mapfiles/test/test.map</a><br>
&amp;layers=imagery<br>
&amp;srs=EPSG%3A900913<br>
&amp;version=1.1.1<br>
&amp;bbox=-20037508.34%2C-<div id=":tv" class="ArwC7c ckChnd">20037508.34%2C-10018754.1704%2C-10018754.1704<br>
&amp;service=WMS<br>
&amp;width=256<br>
&amp;styles=<br>
&amp;format=image%2Fpng<br>
&amp;request=GetMap<br>
&amp;height=256<br>
<br>
Step 6. Admire the red line at the bottom of the image which indicates no data.<br><font color="#888888">--</font></div><br>