Maxime Demers

Results 12 comments of Maxime Demers

You debounce suggestion make sense. Do you suggest to add a debouncer on render() in the main branch or not? I imagine there is many events (such resize) that may...

I did not found a solution to this problem so far. Now I am using nodemon https://github.com/remy/nodemon until this problem is resolved.

@petruisfan I'm on Windows 8 64bits

I think its X.simplifiers[0][0].ordered_thresholds (maybe because input is a multipolygon ?) The output geometry might be invalid doing: ``` simplifier = GDALSimplifier(feat.geom_multipolygon.ogr) WS_ogr = simplifier.from_threshold(simplifier.simplifiers[0][0].ordered_thresholds[0]) ``` one polygon inside the...

the threshold was not set to inf... even if I use a float ``` simplifier = GDALSimplifier(feat.geom_multipolygon.ogr) WS_ogr = simplifier.from_threshold(400.554) ``` the error is still there. As I said, I...

The WKT is too big to be paste, but you can try with the following shapefile https://drive.google.com/file/d/0B5KYgySq75o_aWtJQTFTMFVSZTQ/edit?usp=sharing threshold set to 400.554, you will have some feature with 2 nodes in...

I dont know what would be the best for the algorithm, but as a user I find it hard to set a threshold when dealing with multipolygon features, because part...

Is there a fix for this issue? I have noticed another problem. Contrary to the normal modifyFeature control where you just have to hover a vertex and press delete key...

There is no output except the Access denied message printed in the console. Just using the command mim without any parameter raise the same error. Can mim works without admin...

My goal is to have a hook on afterUpdate that wont be fired after each single update. That's wont be possible if I call update in loop I suppose?