<span class="gI">I am using raster data from naturalearthdata which is in </span><span class="gI">EPSG:4326 [-180</span> -90 180 90]. But when requesting data via openlayers with the map centred at 180E it only draws up to 180E. Below is one of the requests from openlayers: <br>
<span class="gI"><br><a href="http://localhost/mapserv.cgi?map=naturalearth.map&amp;LAYERS=NE1&amp;SERVICE=WMS&amp;VERSION=1.1.1&amp;REQUEST=GetMap&amp;FORMAT=image%2Fjpeg&amp;SRS=EPSG%3A4326&amp;BBOX=165,-30,215,20&amp;WIDTH=256&amp;HEIGHT=256">http://localhost/mapserv.cgi?map=naturalearth.map&amp;LAYERS=NE1&amp;SERVICE=WMS&amp;VERSION=1.1.1&amp;REQUEST=GetMap&amp;FORMAT=image%2Fjpeg&amp;SRS=EPSG%3A4326&amp;BBOX=165,-30,215,20&amp;WIDTH=256&amp;HEIGHT=256</a><br>
<br>How do I get mapserver to render past 180E (or other options)? <br><br>Regards,<br><br>Tim<br><br>######MAPFILE########<br><br>MAP<br>    NAME &quot;NaturalEarth&quot;<br>    IMAGETYPE      PNG24<br>    SIZE           800 600<br>
    SHAPEPATH      &quot;./data&quot;<br>    EXTENT -180 -90 180 90<br>    DEBUG 3<br><br>    WEB<br>        METADATA<br>            &quot;wms_title&quot;                  &quot;NaturalEarth WMS&quot;<br>            &quot;wms_srs&quot;                   &quot;EPSG:4326&quot;<br>
        END<br>    END<br><br>    PROJECTION<br>       &quot;init=epsg:4326&quot;<br>    END<br><br>    #<br>    # Start of layer definitions<br>    #<br>    LAYER<br>        NAME &quot;NE1&quot;<br>        DATA &quot;NE1_HR_LC_SR_W_DR.tif&quot;<br>
        TYPE RASTER<br>        STATUS ON<br><br>        PROJECTION<br>           &quot;init=epsg:4326&quot;<br>        END<br><br>    END<br><br>END #mapfile<br></span>