TriplyDB / Yasgui

Yet Another Sparql GUI
https://yasgui.triply.cc
MIT License
185 stars 55 forks source link

alterative coordinate systems (SRS/CRS) in Geo view #233

Open VladimirAlexiev opened 8 months ago

VladimirAlexiev commented 8 months ago

YasGUI supports only WKT without a coordinate system specification (which defaults to WGS 84). This should display the same point (in Tegel airport https://github.com/Accord-Project/Tegel/issues/1) three times:

PREFIX geo: <http://www.opengis.net/ont/geosparql#>
select * where { 
  values (?xTooltip ?x) {
    ("1" "Point(13.2927928 52.5555023)"^^geo:wktLiteral)
    ("2" "<http://www.opengis.net/def/crs/OGC/1.3/CRS84> Point(13.2927928 52.5555023)"^^geo:wktLiteral)
    ("3" "<http://www.opengis.net/def/crs/EPSG/0/25833> Point(5824764.247 386088.435)"^^geo:wktLiteral)
  }
}

But only 1 is displayed. Even though 2 uses the same CRS (only specified explicitly), it is not displayed.