Merged
Conversation
1aa95dc to
cfdf8f0
Compare
cfdf8f0 to
ac62ecc
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1594 +/- ##
==========================================
+ Coverage 80.16% 80.27% +0.11%
==========================================
Files 347 348 +1
Lines 13756 13867 +111
Branches 1472 1481 +9
==========================================
+ Hits 11027 11131 +104
- Misses 2133 2141 +8
+ Partials 596 595 -1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
9270383 to
81fc52a
Compare
Introduce the iterator types used to traverse and slice a GeoCoordinates sequence to tiles: * Add TilingIterator to convert the GeoCoordinates to a TileKeys * Add AdjacentPairIterator to iterate over the adjacent pairs * Add LineSliceIterator type to slice the path from point A to point B * Add various helper functions to ease the iterators creation Add a Bresenham's line algorithm used to generate tiles over a grid Relates-To: OCMAM-461 Signed-off-by: Mykhailo Kuchma <ext-mykhailo.kuchma@here.com>
andrey-kashcheev
approved these changes
Mar 7, 2025
rustam-gamidov-here
approved these changes
Mar 8, 2025
haraldF
approved these changes
Mar 13, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Introduce the iterator types used to traverse and slice a
GeoCoordinates sequence to tiles:
Add a Bresenham's line algorithm used to generate tiles over a grid
Relates-To: OCMAM-461