query-7b26be3c44826555be258180a2698fee

rq turtle/ttl

so we can't query them with that, but if you query the mountains within two corners with the following coordinates:

Use at

PREFIX geo: <http://www.opengis.net/ont/geosparql#>
#defaultView:Map
SELECT *
{
      VALUES ?coor { 
          "Point(94.7 6)"^^geo:wktLiteral
          "Point(98.2 2)"^^geo:wktLiteral 
      }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?coor"):::projected bind0[/VALUES ?coor/] bind0-->v1 bind00([sPoint(94.7 6)^^<http://www.opengis.net/ont/geosparql#wktLiteral>"]) bind00 --> bind0 bind01([sPoint(98.2 2)^^<http://www.opengis.net/ont/geosparql#wktLiteral>"]) bind01 --> bind0