David Winslow
David Winslow
BadStatusLine indicates that the server responded to the request but did not send a valid HTTP entity - in this case it seems that the server closed the connection forcefully....
This actually represents two different problems. 1. Mapnik2GeoTools tries to support different versions of Mapnik differently by inspecting the `version` attribute on the Map element in XML. We don't have...
Thanks @nrenner. @mappagnosis you should know Mapnik2GeoTools is not actively maintained these days - the best way for you to resolve this issue is probably going to be to dig...
This approach doesn't work in absolutely all cases. For example, imagine a road map with two classes of roads (local and highway) with each having cladding achieved by rendering the...
one other issue is that that style is designed for mapnik 0.7 while the mapquest styles that I've been using with mapnik2geotools are designed for mapnik2. I think we'll want...
Well, the configuration that is done includes more than just the SLDs - mn2gt also sets up various data connections and prepares a layergroup. I don't think it would be...
I've run into this issue regarding nulls while working on the GeoServer CSS module and the solution you propose (ORing with an explicit null check) is exactly what I came...
If this behavior has changed with GeoTools 8, you could also start using GeoServer trunk for rendering - GeoTools 8 is already in use on that branch.
Ok, I've merged in your Color improvements and added some pretty basic version inspection in the Mapnik2GeoTools class (see the `rulesFor` method in Mapnik2Geotools.scala, https://github.com/dwins/mapnik2geotools/blob/26daebd438c004d616cee0ecfb8b6d9ed247e4d9/src/main/scala/Mapnik2GeoTools.scala#L197 ) Basically, we inspect the...
I also put together some notes on how I do development: https://github.com/dwins/mapnik2geotools/wiki/Hacking Hope you find them useful.