<HTML>
<HEAD>
<TITLE>Projection or Data Problem?</TITLE>
</HEAD>
<BODY>
<FONT FACE="Calibri, Verdana, Helvetica, Arial"><SPAN STYLE='font-size:11pt'>Can anyone get this WMS layer to reproject to a projected coordinate system like epsg:2266?<BR>
<BR>
I found this service at. <BR>
<a href="http://www.geocommunicator.gov/blmMap/Map.jsp?MAP=Energy">http://www.geocommunicator.gov/blmMap/Map.jsp?MAP=Energy</a><BR>
<a href="http://206.16.47.174/wmsconnector/com.esri.wms.Esrimap/BLM_SURFACE_MGT_AGY?version=1.1.1&service=WMS&request=GetCapabilities">http://206.16.47.174/wmsconnector/com.esri.wms.Esrimap/BLM_SURFACE_MGT_AGY?version=1.1.1&service=WMS&request=GetCapabilities</a><BR>
<BR>
LAYER<BR>
        GROUP "Political Boundaries"<BR>
        NAME "Public Lands"<BR>
        TYPE RASTER<BR>
        PROJECTION<BR>
            "init=epsg:4326"<BR>
        END<BR>
        STATUS ON<BR>
        CONNECTION "<a href="http://206.16.47.174:80/wmsconnector/com.esri.wms.Esrimap/BLM_SURFACE_MGT_AGY?">http://206.16.47.174:80/wmsconnector/com.esri.wms.Esrimap/BLM_SURFACE_MGT_AGY?</a>"<BR>
        CONNECTIONTYPE WMS<BR>
        METADATA<BR>
            "wms_srs" "EPSG:4326"<BR>
            "wms_name" "SMA_ALL"<BR>
            "wms_server_version" "1.1.1"<BR>
            "wms_format" "image/gif"<BR>
        END<BR>
    END<BR>
The layer matches fine when I reproject it to epsg:4269, but when I project it on the fly to epsg:2266 or epsg:26914 it doesn’t line up.<BR>
<BR>
<BR>
My full mapfile is below.  The other WMS layer matches perfectly no matter what I set the main projection to in the mapfile.<BR>
<BR>
MAP<BR>
    NAME Mapfile<BR>
    # when using 2266<BR>
    #EXTENT 869020 45625 3206883 1281490<BR>
    #when using 4269<BR>
    #EXTENT -125 18 -65 57<BR>
    #when using 26914<BR>
    EXTENT -439406 4470523 1330419 5622143<BR>
    SIZE 978 517<BR>
    MAXSIZE 3072<BR>
    UNITS FEET<BR>
    SHAPEPATH "../mapdata"<BR>
    IMAGECOLOR 191 255 255<BR>
    DEBUG OFF<BR>
    SYMBOLSET "symbols.dat"<BR>
    FONTSET "../mapfiles/fonts/fonts.list"<BR>
<BR>
  #**********************************************************************  <BR>
  # Start of web interface definition (including WMS enabling metadata) *<BR>
  #**********************************************************************<BR>
    WEB<BR>
        MINSCALEDENOM 1000<BR>
        MAXSCALEDENOM 10000000<BR>
        #IMAGEPATH "/Volumes/swcsan/DataManagement/WebServices/html/tmp/"<BR>
        IMAGEPATH "/Library/WebServer/newswc/tmp/"<BR>
        IMAGEURL "/tmp/"<BR>
    END<BR>
    QUERYMAP<BR>
        COLOR 255 255 0<BR>
        #OUTLINE COLOR 0 0 0<BR>
        STYLE hilite<BR>
    END<BR>
    OUTPUTFORMAT<BR>
       NAME 'AGG_JPEG'<BR>
       DRIVER AGG/JPEG<BR>
       IMAGEMODE RGB<BR>
    END<BR>
    PROJECTION<BR>
        "init=epsg:26914" <BR>
    END<BR>
    <BR>
    LAYER<BR>
        GROUP "Political Boundaries"<BR>
        NAME "US Forest Service Regions"<BR>
        TYPE RASTER<BR>
        PROJECTION<BR>
            "init=epsg:4326"<BR>
        END<BR>
        STATUS ON<BR>
        CONNECTION "<a href="http://206.16.47.174:80/wmsconnector/com.esri.wms.Esrimap/BLM_SURFACE_MGT_AGY?">http://206.16.47.174:80/wmsconnector/com.esri.wms.Esrimap/BLM_SURFACE_MGT_AGY?</a>"<BR>
        CONNECTIONTYPE WMS<BR>
        METADATA<BR>
            "wms_srs" "EPSG:4326"<BR>
            "wms_name" "Forest Service Regions"<BR>
            "wms_server_version" "1.1.1"<BR>
            "wms_format" "image/gif"<BR>
        END<BR>
    END<BR>
    LAYER<BR>
        NAME "Flood Data Availability"<BR>
        TYPE RASTER<BR>
        STATUS ON<BR>
        CONNECTION "<a href="http://hazards.fema.gov/wmsconnector/wmsconnector/Servlet/NFHL?">http://hazards.fema.gov/wmsconnector/wmsconnector/Servlet/NFHL?</a>"<BR>
        CONNECTIONTYPE WMS<BR>
        PROJECTION<BR>
            "proj=longlat"<BR>
            "ellps=GRS80"<BR>
            "datum=NAD83"<BR>
            "no_defs"<BR>
        END<BR>
        METADATA<BR>
            "wms_srs"    "EPSG:4269"<BR>
            "wms_name"    "HDM:Q3_COUNTYMAP"<BR>
            "wms_server_version"    "1.1.1"<BR>
            "wms_format"    "image/gif"<BR>
        END<BR>
        GROUP "Flood Plain"<BR>
    END<BR>
    LAYER<BR>
        NAME "Midwest States"<BR>
        PROJECTION<BR>
            "init=epsg:2266"<BR>
        END<BR>
        DATA states_upmidwest<BR>
        TYPE POLYGON<BR>
        STATUS ON<BR>
        CLASS<BR>
          NAME "All States"<BR>
          STYLE<BR>
            OUTLINECOLOR 255 0 0<BR>
          END<BR>
        END<BR>
      END<BR>
END<BR>
<BR>
This works in Arcmap but who knows what extra talking goes on behind the scenes to ArcIMS.<BR>
<BR>
Paul</SPAN></FONT>
</BODY>
</HTML>