Josh Baker

Results 411 comments of Josh Baker

Your GeoJSON has a couple whitespace characters. This is confusing to the `tile38-cli`, which expects that each argument is a series of characters with no whitespace, or that the argument...

Hi, A GeoJSON polygon must start and end with the same point. Try this: ``` {"type":"Polygon","coordinates":[[[7.446993, 51.510959],[7.450195, 51.511600],[7.450066, 51.507620],[7.446867, 51.508127],[7.446993, 51.510959]]]} ```

I'm cool with updating the client. Do you know if this will cause any incompatibilities with legacy users?

I just pushed an update that bumps the Kafka library to the latest version. https://github.com/Shopify/sarama v1.26.4

This change should be included with in the docket build tagged “edge”.

Makes sense. I just pushed an update to that assigns the minimum Kafka version to v0.10, based on instructions from the link you provided.

I tested on my side and I'm seeing the same issue. The cause appears to be that the node-tile38 client is wrapping the WHEREEVAL script in extra double-quote characters prior...

No, you must issue each SET operation one at a time.

I agree that it would be useful to have a simple RADIUS/CIRCLE type, something I've thought about in the past. The only problem is that there's no Circle type in...

Do you mean something like this? ```json { "type":"Feature", "geometry":{"type":"Point","coordinates":[-112.2693,33.5123]}, "properties": { "type": "Circle", "radius": 245, "radius_units": "m" } } ``` This would be valid GeoJSON, but a GeoJSON library...