TriplyDB / Yasgui

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

support GML in Geo view #234

Open VladimirAlexiev opened 5 months ago

VladimirAlexiev commented 5 months ago

Related to https://github.com/TriplyDB/Yasgui/issues/233:

I guess yasgui supports only WKT: from this query, only 1 (WKT) is displayed. Is it possible to also support GML, which is the other serialization format of GeoSPARQL 1.0?

PREFIX geo: <http://www.opengis.net/ont/geosparql#>
select * where { 
  values (?xTooltip ?x) {
    #("1" "Point(13.2927928 52.5555023)"^^geo:wktLiteral)
    ("2" "<gml:Point><gml:pos>13.2927928 52.5555023</gml:pos></gml:Point>"^^geo:gmlLiteral)
  }
}