vote up 0 vote down star

I have UMN configured as a cascading mapserver. I want it to reproject the map while cascading through UMN. How can I do that? Is that possible at all?

flag

79% accept rate

1 Answer

vote up 0 vote down

Not sure what you mean by cascading through UMN, but you can set projections on individual layers in MapServer that differ from the MAP projection. E.g. in your layer definition:

LAYER
    NAME 'Test'
    TYPE POLYGON
    DATA "Test.shp"
    METADATA
      'wms_title' 'Test'
    END
    STATUS OFF
    TRANSPARENCY 100
    PROJECTION 
    "init=epsg:3785" # change your projection code here
    END
    CLASS
       NAME 'Basic Symbology' 
       STYLE
         SYMBOL 0 
         SIZE 2 
         OUTLINECOLOR 0 0 0
       END
    END
END
link|flag
Cascading mapserver means, that I define a layer which data comes from a different external WMS. Changing projection in this case is what I'm interested in. – Mnementh Dec 16 at 14:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.