Hey Simon,

If you have some scripting chops you could also look at GeoScript. It has
convenient apis for composing styles.  For example to compose the well
known population style boils down to (in python):

style = Fill('#4DFF4D', 0.7).where('PERSONS < 2000000')
style +=  Fill('#FF4D4D',0.7).where('PERSONS BETWEEN 2000000 AND 4000000')
style += Fill('#4D4DFF',0.7).where('PERSONS > 4000000')
style += Stroke(width=0.2) + Label('STATE_ABBR', 'Times New Roman 14px')
writeSLD(style, 'population.sld')

I have been able to utilize this technique to compose some fairly complex
styles. And coupled with geoserver restconfig it leads to a pretty
convenient workflow. Anyways, not for everybody but I thought I would
mention it.

-Justin




On Wed, May 14, 2014 at 7:18 AM, Simon Hartley <shart...@airdata.co.uk>wrote:

> Hi,
>
>
>
> Does anyone have any recommendations for easily building and maintaining
> SLD styles?
>
> We’ve tried using the GeoServer CSS extension and were initially happy
> with it, but we’re going to have to abandon it after major speed issues.
>
> I can see links to a Styler project, but it doesn’t seem to have much
> progress. Is OpenGeo Suite any good for this?
>
>
>
> Thanks a lot
>
>
>
> Simon Hartley
>
>
>
>
>
> .
>
>
>
> *** This communication has been sent from World Fuel Services
> Corporation or its subsidiaries or its affiliates for the intended
> recipient
> only and may contain proprietary, confidential or privileged information.
> If you are not the intended recipient, any review, disclosure, copying,
> use, or distribution of the information included in this communication
> and any attachments is strictly prohibited. If you have received this
> communication in error, please notify us immediately by replying to this
> communication and delete the communication, including any
> attachments, from your computer. Electronic communications sent to or
> from World Fuel Services Corporation or its subsidiaries or its affiliates
> may be monitored for quality assurance and compliance purposes.***
>
>
>
> ------------------------------------------------------------------------------
> "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
> Instantly run your Selenium tests across 300+ browser/OS combos.
> Get unparalleled scalability from the best Selenium testing platform
> available
> Simple to use. Nothing to install. Get started now for free."
> http://p.sf.net/sfu/SauceLabs
> _______________________________________________
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>


-- 
*Justin Deoliveira*
Vice President, Engineering | Boundless
jdeol...@boundlessgeo.com
@j_deolive <https://twitter.com/j_deolive>
------------------------------------------------------------------------------
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free."
http://p.sf.net/sfu/SauceLabs
_______________________________________________
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users

Reply via email to