feat(parity): bind QUADBIN/TQUADBIN cell index types; bump MEOS pin to d94af2d2c9#203
Open
estebanzimanyi wants to merge 1 commit into
Open
feat(parity): bind QUADBIN/TQUADBIN cell index types; bump MEOS pin to d94af2d2c9#203estebanzimanyi wants to merge 1 commit into
estebanzimanyi wants to merge 1 commit into
Conversation
2574174 to
0fcf4b1
Compare
ae6e3e6 to
801eeed
Compare
…o d94af2d2c9 Registers QUADBIN as a BIGINT alias and TQUADBIN as a BLOB-backed temporal type. Exposes quadbinTileToCell, quadbinCellToTileX/Y/Z, quadbinGetResolution, quadbinIsValidCell, tquadbin (instant constructor), startValue, endValue, valueN, values, valueAtTimestamp, and cellToQuadkey, all routed through the serial MEOS executor. Advances the vcpkg MEOS pin to ecosystem-pin-2026-06-16g (d94af2d2c9), the first pin that carries the QUADBIN family in the public MEOS surface (meos_quadbin.h).
801eeed to
3d8634b
Compare
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.
Binds the CARTO Web-Mercator DGGS cell index family from MobilityDB PR #1210. QUADBIN is a BIGINT alias for the 64-bit uint64 cell ID; TQUADBIN is the temporal cell index stored as a BLOB. The static-cell surface exposes quadbinTileToCell, quadbinCellToTileX/Y/Z, quadbinGetResolution, and quadbinIsValidCell. The temporal surface exposes the tquadbin constructor plus startValue, endValue, valueN, values, valueAtTimestamp, and cellToQuadkey. The vcpkg MEOS pin advances to 50fef5bd0b, which carries the QUADBIN source tree and MeosType catalog entries (T_QUADBIN=78, T_QUADBINSET=79, T_TQUADBIN=80) required for the temporal machinery. The name mapping follows the camelCase rule: MEOS snake_case symbols map one-for-one to camelCase DuckDB names with no hand-picked deviations.