-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: remove use of JSON LD from CQL JSON parsing (#316)
* fix: remove use of JSON LD from CQL JSON parsing * Change all filtering to use FILTER so as to avoid equality issues for numeric and string comparisons. e.g. FILTER(?var = 2000) will match on 2000, "2000"^^xsd:decimal etc. whereas VALUES ?var { 2000 } will only match on the exact same value. Use a triple pattern match for "=" filtering where the RHS operand is a URI. This should be more performant. * Make enums optional in SHACL defined CQL Queryables. Black code. * Add geo:hasGeometry geo:asWKT sequence path to OGCFeaturesAllProps profile in order to support geometries that are specified on named node sequence paths (rather than the common specification of geometries using blank nodes).
- Loading branch information
1 parent
165ee61
commit 59ba6a8
Showing
117 changed files
with
382 additions
and
374 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,4 +50,4 @@ def setup(): | |
print(f"Successfully loaded {file_name}") | ||
|
||
|
||
setup() | ||
setup() |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,17 @@ | ||
{ | ||
"op": "s_crosses", | ||
"args": [ | ||
{ | ||
"property": "geometry" | ||
}, | ||
{ "property": "geometry" }, | ||
{ | ||
"type": "LineString", | ||
"coordinates": [ | ||
[ | ||
[ | ||
153.06307, | ||
-27.3151243 | ||
], | ||
[ | ||
153.069877, | ||
-27.3151243 | ||
], | ||
[ | ||
153.069877, | ||
-27.2859541 | ||
], | ||
[ | ||
153.06307, | ||
-27.2859541 | ||
], | ||
[ | ||
153.06307, | ||
-27.3151243 | ||
] | ||
] | ||
] | ||
"coordinates": [ [ 172.03086, 1.5 ], | ||
[ 1.1, -90.0 ], | ||
[ -159.757695, 0.99999 ], | ||
[ -180.0, 0.5 ], | ||
[ -12.111235, 81.336403 ], | ||
[ -0.5, 64.43958 ], | ||
[ 0.0, 81.991815 ], | ||
[ -155.93831, 90.0 ] ] | ||
} | ||
] | ||
} | ||
} |
This file contains 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
This file contains 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
Oops, something went wrong.