Tyler DeWitt
Results
2
issues of
Tyler DeWitt
A simple polygon does not intersect itself. ``` points2= [[0,0],[1,1],[1,0],[2,1]] ring2 = factory.linear_ring( points2.map { |point| factory.point(point[0], point[1])}) polygon2 = factory.polygon(ring2) polygon2.is_simple? # should be FALSE, returns TRUE ``` This...
bug
We use the [PostGIS extension](http://postgis.net/) and the [rgeo AR gem](https://github.com/rgeo/activerecord-postgis-adapter). We use truncation for our `js` tests as well as our `before(:suite)` strategy. The problem is that the PostGIS extension...