feat(berlinmod): route the streaming-form spatial predicates through MEOS (stacks on #19)#20
Closed
estebanzimanyi wants to merge 1 commit into
Conversation
…MEOS Every BerlinMOD-9 × 3-form spatial predicate evaluates through MEOS via the thin MEOSBridge wiring rather than in-binding spatial mathematics: the within-distance predicate builds the vehicle position as a tgeogpoint instant and calls edwithin_tgeo_geo against the query geography in metres on the WGS84 spheroid (the operator MobilityNebula/Queries/Query1.yaml names); region containment calls eintersects_tgeo_geo between the point's tgeompoint instant and the region polygon; pairwise and cumulative distances call geog_distance. MEOSBridge holds no spatial mathematics of its own — it constructs the MEOS temporal instants and geographies and delegates the computation to libmeos, initialising MEOS on the calling task thread. The pure-Java Haversine and SegmentDistance classes are removed.
70cb274 to
2bb4c19
Compare
Member
Author
|
Superseded by the Path-B consolidation: the former 18-deep stack is collapsed into two reviewable topical PRs on top of the merged scaffold — MEOS integration #30 → benchmark #31 — each one clean squashed commit with the generated-facade bulk, dead family-flag profiles, committed target/ artifacts, and invented synthetic corpus removed. Closing as folded into #30/#31. |
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.
Every BerlinMOD spatial predicate evaluates through MEOS via the thin MEOSBridge: within-distance through edwithin_tgeo_geo (the vehicle position as a tgeogpoint instant, metres on the WGS84 spheroid), region containment through eintersects_tgeo_geo, and distances through geog_distance. The pure-Java Haversine and SegmentDistance classes are removed, and the README describes the MEOS-only wiring.