Corey Farwell
Corey Farwell
WIP PR: https://github.com/georust/rust-geo/pull/85
nice, good find! for posterity, here's the tracking issue for specialization: https://github.com/rust-lang/rust/issues/31844
@michaelkirk Gotcha, thanks for explaining. In that case, do you (or anyone) have any hesitations about a 0.7.4 release for geo-types?
This all sounds good to me! 👍🏻
Somewhat related to https://github.com/georust/geo/issues/194#issuecomment-621776960
are you thinking something like this? ```rust let ls = line_string![coord1, coord2, coord3, coord4, coord5]; assert_eq!( line_string![coord2, coord3, coord4], ls.slice(coord2, coord4) // or ls[coord2..=coord4] ); ```
I think initially just having two coordinates (x, y) should be be an okay starting point, and if we want to expand we can do that in the future. Though,...
Maybe we should open separate GitHub issues to discuss each of these points individually to facilitate better, more organized discussion. In terms of XYZM, does the M coordinate value ever...
Unless I'm looking at this incorrectly, [it looks like JTS's distance operation only works on XY](https://github.com/simplegeo/jts/blob/master/src/com/vividsolutions/jts/operation/distance/DistanceOp.java) even though they offer XYZ (and M).
Relevant issue: https://github.com/georust/rust-geo/issues/194 Library that may help here: https://github.com/paholg/dimensioned/