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

uber / h3-go
100%

Build:
DEFAULT BRANCH: master
Repo Added 18 Sep 2018 05:56PM UTC
Files 8
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

LAST BUILD ON BRANCH master
branch: master
CHANGE BRANCH
x
Reset
  • master
  • bench-ranges
  • chore-upgrade-h3-core
  • feat-add-error-codes
  • feat/latlng-to-cells-batch
  • gilley/adopt-modules
  • gilley/test-str
  • gilley/travis
  • joegilley-patch-2
  • joegilley-patch-3
  • justinhwang/4.3
  • justinhwang/4.5
  • justinhwang/bindings
  • justinhwang/bit
  • justinhwang/bump
  • justinhwang/changelog
  • justinhwang/coverage
  • justinhwang/doc
  • justinhwang/docs
  • justinhwang/edge
  • justinhwang/err
  • justinhwang/forward-gnomonic-opt
  • justinhwang/from_string
  • justinhwang/generics
  • justinhwang/github
  • justinhwang/greatcircle
  • justinhwang/griddiskunsafe
  • justinhwang/gridring
  • justinhwang/indexdigit
  • justinhwang/intpow
  • justinhwang/latlngcell
  • justinhwang/latlngstr
  • justinhwang/numverts
  • justinhwang/paritytest-benchmarks
  • justinhwang/purego-phase-a
  • justinhwang/purego-phase-b
  • justinhwang/purego-phase-c
  • justinhwang/purego-phase-d
  • justinhwang/purego-phase-e
  • justinhwang/purego-phase-f
  • justinhwang/purego-phase-g
  • justinhwang/readme
  • justinhwang/remove-h3core
  • justinhwang/stack
  • justinhwang/tostring
  • justinhwang/tovec3-projection-opt
  • justinhwang/unsafe
  • justinhwang/vertex
  • maintainer-banner
  • refs/tags/v3.7.0
  • refs/tags/v3.7.1
  • refs/tags/v4.0.0
  • refs/tags/v4.0.1
  • refs/tags/v4.1.0
  • refs/tags/v4.1.1
  • refs/tags/v4.1.2
  • refs/tags/v4.2.0
  • refs/tags/v4.2.1
  • refs/tags/v4.2.2
  • refs/tags/v4.2.3
  • refs/tags/v4.2.4
  • refs/tags/v4.3.0
  • refs/tags/v4.4.0
  • refs/tags/v4.4.1
  • refs/tags/v4.5.0
  • update-h3
  • upgrade-github-actions-node24
  • v3.0.0
  • v3.0.1
  • v3.0.2
  • v4
  • vscode
  • zcoleman/exposing-polygontocells-containment
  • zcoleman/issue-78

02 Jul 2026 03:08PM UTC coverage: 100.0%. Remained the same
28600578552

push

github

web-flow
feat: add pure-Go CellToLatLng & CellToBoundary to x/h3go (#125)

Implement the reverse projection pipeline in pure Go: CellToLatLng
(+ Cell.LatLng) and CellToBoundary (+ Cell.Boundary), with the supporting
FaceIJK/coordIJK/vec2d/vec3d geometry, substrate grids, and overage
adjustment. Verified against the cgo reference via paritytest and by
LatLngToCell round-trips, with regression cases ported from the C tests.

Refactors applied across the package:
- Convert input-parameter helpers to methods on their natural receiver type,
  with one canonical receiver name per type.
- Inline pure-delegation unexported helpers into their exported methods
  (resolution, baseCellNumber, isPentagon); collapse isValid's guard in.
- Add isResClassIII(res) helper, replacing scattered %2 == 1 checks.
- Exclude mnd for x/h3go via path-scoped .golangci.yml rule (geometric and
  bit-layout constants are inherent, not magic) and drop the now-unused
  //nolint:mnd directives; keep gosec.

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

616 of 616 new or added lines in 7 files covered. (100.0%)

2102 of 2102 relevant lines covered (100.0%)

1578843.11 hits per line

Relevant lines Covered
Build:
Build:
2102 RELEVANT LINES 2102 COVERED LINES
1578843.11 HITS PER LINE
Source Files on master
  • Tree
  • List 8
  • Changed 5
  • Source Changed 0
  • Coverage Changed 5
Coverage ∆ File Lines Relevant Covered Missed Hits/Line

Recent builds

Builds Branch Commit Type Ran Committer Via Coverage
28600578552 master feat: add pure-Go CellToLatLng & CellToBoundary to x/h3go (#125) Implement the reverse projection pipeline in pure Go: CellToLatLng (+ Cell.LatLng) and CellToBoundary (+ Cell.Boundary), with the supporting FaceIJK/coordIJK/vec2d/vec3d geometry, s... push 02 Jul 2026 03:10PM UTC web-flow github
100.0
27644218329 master feat: add pure-Go index introspection & hierarchy to x/h3go (#124) Extend the cgo-free x/h3go reimplementation to cover the index introspection and hierarchy API, all operating on the H3 index bit layout with no geometric projection: - introspec... push 16 Jun 2026 07:57PM UTC web-flow github
100.0
27581672773 master feat: add LatLngToCellString helper (#123) Convenience wrapper for LatLngToCell followed by Cell.String, for the common case of indexing a coordinate and getting its string form. push 15 Jun 2026 10:53PM UTC web-flow github
100.0
27428509347 master feat: add pure-Go LatLngToCell in x/h3go (#122) Add x/h3go, a zero-allocation pure-Go implementation of LatLngToCell. It ports the entire latLngToCell pipeline (vec3d projection, face lookup, IJK coordinate transforms, H3 index encoding) to Go, s... push 12 Jun 2026 04:23PM UTC web-flow github
100.0
26850241105 master feat: reimplement greatCircle* as pure Go (#121) Eliminate CGo overhead by implementing the haversine formula directly in Go. Benchstat shows ~66% faster execution and zero allocations. Before (CGo): ```lang=bash BenchmarkGreatCircleDistanceRad... push 02 Jun 2026 09:53PM UTC web-flow github
100.0
26835208759 master perf: reimplement bit-manipulation functions in pure Go (#120) Replace CGo calls with pure Go bit operations for Resolution, BaseCellNumber, IsResClassIII, IsPentagon, IsValid (Cell), and IsValidIndex. This eliminates the ~18ns CGo crossing overh... push 02 Jun 2026 05:00PM UTC web-flow github
100.0
26477017147 master chore: update changelog for v4.5.0, update readme ver in update script (#118) push 26 May 2026 09:46PM UTC web-flow github
100.0
26472344813 master feat: implement reverseDirectedEdge (#117) Wraps the new H3 C v4.5.0 reverseDirectedEdge API as DirectedEdge.Reverse(), returning the edge from destination to origin. push 26 May 2026 08:09PM UTC web-flow github
100.0
26465964585 master feat: bump H3 Core to 4.5.0 (#116) push 26 May 2026 06:03PM UTC web-flow github
100.0
24095436245 master chore: update CHANGELOG (#112) push 07 Apr 2026 05:36PM UTC web-flow github
100.0
See All Builds (333)
  • Repo on GitHub
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