mapbox / raster-tester

Utilities for raster tests
https://github.com/mapbox/raster-tester
MIT License
0 stars 1 forks source link

fixing error in winding alg #21

Closed dnomadb closed 8 years ago

dnomadb commented 8 years ago

Was:

sum(
    (x1-x0) * (y1 - y0)
    (x2-x1) * (y2 - y1)
    ...
)

Fixed as:

sum(
    (x1-x0) * (y1 + y0)
    (x2-x1) * (y2 + y1)
    ...
)
jqtrde commented 8 years ago

Current coverage is 96.00%

Merging #21 into master will decrease coverage by -0.01% as of d40801c

@@            master    #21   diff @@
=====================================
  Files            7      7       
  Stmts          226    225     -1
  Branches         0      0       
  Methods          0      0       
=====================================
- Hit            217    216     -1
  Partial          0      0       
  Missed           9      9       

Review entire Coverage Diff as of d40801c

Powered by Codecov. Updated on successful CI builds.

dnomadb commented 8 years ago

Going to ignore this coverage report + merge

jqtrde commented 8 years ago

:eyes:

jqtrde commented 8 years ago

I made Codecov chill out a bit — shouldn't see this sort of thing anymore.