Corey Farwell
Corey Farwell
using `f64`, gdal returns: ``` POLYGON (( -9.62417805638506E+3 -9.62420163043854E+3, -26711958 0.0,0.000002685247864 -26711958, -9.62417805638506E+3 -9.62420163043854E+3 )) ```
and the original geo panic here disappears with f64
One example in `std` is [`CString::new`](https://doc.rust-lang.org/std/ffi/struct.CString.html#method.new) which will fail if the bytes contain a null character (`\0`)
Opened an issue similar to this: https://github.com/georust/rust-geo/issues/127
Sorry, didn't see this until today. I'll need a day or two to think this through but I think this is a good idea. I'm not sure how this might...
I played around with this idea today: https://is.gd/tqkzBp I _think_ this is a good idea. If you have any feedback for my link above, let me know. Commented out section...
@pka I really appreciate the effort you're putting into this! :sparkles: In my opinion, I _do_ think this is the right path for rust-geo; supplying a set of traits like...
My main concern with offering `opt_z` (and `opt_m`) is that users might expect rust-geo's set of algorithms to consider these extra dimensions when performing the calculations (e.g. three dimensional XYZ...
> Concrete structures in rust-geo: A next step would be to define geo factory traits. A rust-geo method like intersection would use these traits to generate the output geometry. Without...
Hey all. I'm interested in moving forward with this. @pka Do you have a local git branch with your changes you could open a PR with? I'd be interested in...