• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

mapbox / geobuf / 97
100%

Build:
DEFAULT BRANCH: master
Ran 22 Dec 2015 04:40PM UTC
Jobs 1
Files 3
Run time 0s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

pending completion
97

push

travis-ci

mourner
Fix accumulating precision errors in delta encoding.

Features with high-precision coordinates and lines or polygons containing many points can accumulate an error due to the delta encoding method, which only considers the previous point when computing the delta:

  delta[n] = x[n] - x[n - 1]

Instead use the sum of all the previous deltas:

  delta[n] = x[n] - sum(delta[0 .. n-1])

This prevents rounding errors from accumulating. A cumulative sum is kept for speed instead of recomputing the sum each time.

5 of 5 new or added lines in 1 file covered. (100.0%)

245 of 245 relevant lines covered (100.0%)

23.7 hits per line

Jobs
ID Job ID Ran Files Coverage
1 97.1 22 Dec 2015 04:40PM UTC 0
100.0
Travis Job 97.1
Source Files on build 97
Detailed source file information is not available for this build.
  • Back to Repo
  • Travis Build #97
  • ee5f98ce on github
  • Prev Build on master (#96)
  • Next Build on master (#98)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc