fix the reported CRS identifier when the CRS84 alias URI is requested#567
Merged
Conversation
When a request references CRS84 by its registered alias URI http://www.opengis.net/def/crs/OGC/0/CRS84, the CRS of the response (e.g., in the Content-Crs header) was reported with the primary URI http://www.opengis.net/def/crs/OGC/1.3/CRS84. OGC API Features Part 2 requires that the CRS identifier used in the request is echoed. - EpsgCrs: new auxiliary attribute uriOverride, excluded from equals()/hashCode(); toUriString() returns it when present. Instances that differ only in the URI used to reference the CRS remain equal everywhere (supported-CRS checks, transformer caches, CRS84 special cases). - OgcCrs: new constant CRS84_OGC0, the same CRS as CRS84, but with the alias URI as uriOverride; fromString() returns it for the alias spelling. - EpsgCrs: toAlternativeUriString() replaced by allUris(), which lists all registered URIs of a CRS (the canonical URI plus, for CRS84, the alias URI).
3 tasks
azahnen
approved these changes
Jul 10, 2026
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.
Part of addressing ldproxy/ldproxy#1681.
When a request references CRS84 by its registered alias URI http://www.opengis.net/def/crs/OGC/0/CRS84, the CRS of the response (e.g., in the Content-Crs header) was reported with the primary URI http://www.opengis.net/def/crs/OGC/1.3/CRS84. OGC API Features Part 2 requires that the CRS identifier used in the request is echoed.