[GIS] Converting SLD to CSS style in GeoServer

cssgeoservergeoserver-css-modulesldstyle

I am trying to convert SLD to CSS styles in latest geoserver version 2.8.1.

I have added css plugins(from geoserver-2.8.1-css-plugin.zip) but it is not working properly.

Is there any other plugin for converting from SLD to CSS style?

What is the solutions for this?

Best Answer

The CSS plugin does a CSS to SLD conversion, the opposite is not always possible as long as CSS cascading is enabled.

On the current developer series (GeoServer 2.9.x) we have a directive to disable cascading, e.g., @mode "Simple"; at the top of the file, that would allow one to write a SLD -> CSS translator... but it's not there yet. Contributions welcomed :-)

Related Question