<p>The answers you got in StackExchange are correct: your images are in EPSG:4326, which dies not do any vertical stretching. Distance units at the poles converge to zero. Web Mercator, which Google and OSM tiles are in, stretches the latitudes, converging to infinity at the poles.</p>

<p>In early OpenLayers days, it was possible to have tiles stretched to losely match the Google tiles. This is now deprecated, because it adds inaccuracy. Some other mapping clients still do this, so probably this is the reason why things worked in your previous implementations.</p>

<p>Having said that, the recommendation above to use WMS instead of image layers is a good one. GeoServer or MapServer are easy to set up, and can easily be configured to serve and transform georeferenced images.</p>
<p>Regards,<br>
Andreas.</p>
<p><blockquote type="cite">On Apr 29, 2011 5:21 PM, &quot;Ian Turton&quot; &lt;<a href="mailto:ijturton@gmail.com">ijturton@gmail.com</a>&gt; wrote:<br><br><p><font color="#500050">On 29 April 2011 10:31, hayley &lt;<a href="mailto:openlayers@vortex.cx">openlayers@vortex.cx</a>&gt; wrote:<br>
&gt; I&#39;ve posted the longer story over on ...</font></p>Couldn&#39;t you use the WMS layer instead?<br>
<br>
new OpenLayers.Layer.WMS(&quot;Weather Radar&quot;,<br>
            &quot;<a href="http://nowcoast.noaa.gov/wms/com.esri.wms.Esrimap/obs" target="_blank">http://nowcoast.noaa.gov/wms/com.esri.wms.Esrimap/obs</a>?&quot;,<br>
            {layers:&#39;RAS_RIDGE_NEXRAD&#39;,<br>
             transparent: true,<br>
             format: &#39;image/png&#39;<br>
            },<br>
            {isBaseLayer: false,<br>
             singleTile: true,<br>
             ratio: 1<br>
            }<br>
        )<br>
<br>
See <a href="http://ian01.geog.psu.edu/geoserver/www/maps/jessica-groups.html" target="_blank">http://ian01.geog.psu.edu/geoserver/www/maps/jessica-groups.html</a><br>
for a full example. Then assuming you set spericalmecator:true it will<br>
line up over Google just fine.<br>
<br>
Ian<br>
<font color="#888888">--<br>
Ian Turton<br>
_______________________________________________<br>
Users mailing list<br>
<a href="mailto:Users@lists.osgeo.org">Users@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/openlayers-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/openlayers-users</a><br>
</font></blockquote></p>