Steve Bennett

Results 125 issues of Steve Bennett

I find that often when I call `turf.along` I also need the angle of the given point along the line (for instance, if animating an icon along a line, you...

enhancement
@turf/along

The documentation refers to the `point` argument as of type `Coord` with description "input point". The example shows the use of `turf.point()` to convert a coordinate to a Point geometry....

docs

I was looking for a way to transform each coordinate of a GeoJSON object and was about to propose `.coordMap()` (similar to #1438). It was only by reading through the...

docs

- version 6.5 - can't share the data - no snippet. Confirming [this issue](https://github.com/NickCis/polygonize/issues/6) ``` Error: Each LinearRing of a Polygon must have 4 or more Positions. polygon index.js:227 toPolygon...

@turf/polygonize

This bit of code could obviously be made faster with a non-exhaustive search ```javascript case "MultiPolygon": segmentEach(feature1, (segment1) => { segmentEach(feature2, (segment2) => { if (lineIntersect(segment1!, segment2!).features.length) overlap++; }); });...

@turf/boolean-intersects

v 6.5.0 This may be the same bug report as #2271 (it's unclear what the intention of that report is). But, the definition of booleanOverlap is: > returns true if...

@turf/boolean-overlap

turf 6.5.0 ```javascript const a = { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.999199283951, -31.87109214935888 ], [ 115.999073681861, -31.87117439325889 ], [ 115.9992940352709, -31.87151111002888...

@turf/intersect

I'm working on a snapping mode for line and polygon drawing that supports snapping moved or created vertices to edges in existing lines/polygons or existing points. (Haven't decided about snapping...

feature
ui
RFC

_The more information we have the easier it is for us to help. Feel free to remove any sections that might not apply_ ### Issue ``` $ brew install stripe/clipe-cli/stripe...

bug

"ocap" is used in lowercase throughout. I guess for people who work in this space, it's completely obvious what it means, but I had no idea. Googling "ocap" primarily returns...

enhancement