Lars Marius Garshol

Results 290 comments of Lars Marius Garshol
trafficstars

I was eventually able to work around this by putting each feature into a separate layer, and setting `clear_label_cache = True`.

ShieldSymbolizer seems to have the exact same problem.

Curiously, the much more straightforward ``` import mapnik def mktrans(source, target): source = mapnik.Projection(source) target = mapnik.Projection(target) trans = mapnik.ProjTransform(source, target) return trans box = mapnik.Box2d(-5, 55, 35, 67) source...

I can't set it with ShieldSymbolizer, either. Does this mean it's not possible to render text with Python mapnik? I really need this for maps that are to appear in...

Yes, this is possible, if you index the records as you process them. The most efficient approach is to take some batch of records (say 10,000 records), index them all,...

No, actually to compare the sets of values using Jaccard/Dice. Remember that Duke records can have multiple values for a single property. Thus, we can treat these as sets of...

_From [[email protected]](https://code.google.com/u/106380900043315593284/) on June 12, 2013 05:52:57_ Yes, I've been wanting to develop something along these lines for a while now. Duke contains utilities to create clusters containing all matching...

_From [vasilievip](https://code.google.com/u/vasilievip/) on June 12, 2013 06:09:34_ > I guess what you want is to automatically produce a "gold standard" record for each cluster. > Yes, this sounds like what...

_From [[email protected]](https://code.google.com/u/106380900043315593284/) on June 12, 2013 06:21:15_ Yes, having a field with an ID for the data source will make a big difference. It's definitely possible right now (as I...

_From [vasilievip](https://code.google.com/u/vasilievip/) on June 12, 2013 06:34:42_ From mosaic demos - merging of data is done by picking fields by data source weight and then use user to adjust this...