PREFIX geo: <http://www.opengis.net/ont/geosparql#>
PREFIX dct: <http://purl.org/dc/terms/>
PREFIX cim: <https://cim.ucaiug.io/ns#>
select ?name ?wkt ?dataset {
{select distinct ?psr {?psr geo:hasGeometry ?geo1,?geo2 filter(str(?geo1)<str(?geo2))}}
graph ?g {
?psr geo:hasGeometry ?geo.
?geo geo:asWKT ?wkt
}
?psr cim:IdentifiedObject.name ?name
optional {?g dct:title ?dataset}
optional {?g dct:description ?dataset}
}
| name |
wkt |
dataset |
| "ARENDAL" |
"POINT(8.76827271306773 58.4417958162972)" |
"Geographical Location (GL) part of the Nordic 44-bus synthetic test model developed by Statnett SF of the Nordic region." |
| "ARENDAL" |
"POINT(8.77315129409427E0 5.84640187084885E1)" |
"DIGIN10-30-MV1_GL" |
You see that the Telemark (DIGIN10) coordinates are slightly different.
You see that the Telemark (DIGIN10) coordinates are slightly different.
https://github.com/statnett/Talk2PowerSystem/blob/a42dbbfa360de0e975e38c76a0b5d96a72552707/diagram/diagrams.trig#L565-L585
The reason is that they are emitted as numbers in JSON-LD: instead, should be emitted as strings.