diff --git a/src/main/resources/application-context-json-ld.xml b/src/main/resources/application-context-json-ld.xml
index aa12d9ff..0c2d4f4b 100644
--- a/src/main/resources/application-context-json-ld.xml
+++ b/src/main/resources/application-context-json-ld.xml
@@ -30,6 +30,10 @@
+
+
+
+
diff --git a/src/main/resources/application-context-schema-org.xml b/src/main/resources/application-context-schema-org.xml
index 448f306e..02609ff9 100644
--- a/src/main/resources/application-context-schema-org.xml
+++ b/src/main/resources/application-context-schema-org.xml
@@ -576,6 +576,110 @@
+
+
+
+
+
+
+ PREFIX rdfs:
+ PREFIX SO:
+
+ SELECT ?southBoundCoord
+ WHERE {
+ ?datasetId rdf:type SO:Dataset .
+ ?datasetId SO:spatialCoverage ?spatial .
+ ?spatial rdf:type SO:Place .
+ ?spatial SO:geo ?geo .
+ ?geo rdf:type SO:GeoCoordinates .
+ ?geo SO:latitude ?southBoundCoord .
+ }
+ LIMIT 1
+ ]]>
+
+
+
+
+
+
+
+
+
+
+
+ PREFIX rdfs:
+ PREFIX SO:
+
+ SELECT ?westBoundCoord
+ WHERE {
+ ?datasetId rdf:type SO:Dataset .
+ ?datasetId SO:spatialCoverage ?spatial .
+ ?spatial rdf:type SO:Place .
+ ?spatial SO:geo ?geo .
+ ?geo rdf:type SO:GeoCoordinates .
+ ?geo SO:longitude ?westBoundCoord .
+ }
+ LIMIT 1
+ ]]>
+
+
+
+
+
+
+
+
+
+
+
+ PREFIX rdfs:
+ PREFIX SO:
+
+ SELECT ?northBoundCoord
+ WHERE {
+ ?datasetId rdf:type SO:Dataset .
+ ?datasetId SO:spatialCoverage ?spatial .
+ ?spatial rdf:type SO:Place .
+ ?spatial SO:geo ?geo .
+ ?geo rdf:type SO:GeoCoordinates .
+ ?geo SO:latitude ?northBoundCoord .
+ }
+ LIMIT 1
+ ]]>
+
+
+
+
+
+
+
+
+
+
+
+ PREFIX rdfs:
+ PREFIX SO:
+
+ SELECT ?eastBoundCoord
+ WHERE {
+ ?datasetId rdf:type SO:Dataset .
+ ?datasetId SO:spatialCoverage ?spatial .
+ ?spatial rdf:type SO:Place .
+ ?spatial SO:geo ?geo .
+ ?geo rdf:type SO:GeoCoordinates .
+ ?geo SO:longitude ?eastBoundCoord .
+ }
+ LIMIT 1
+ ]]>
+
+
+
+
+