Przeglądaj źródła

✨ load ontology from service

...instead of bundling it into the app.
This both reduces app size
and prevents divergence of data used in service and in the app
jmacura 4 lat temu
rodzic
commit
4238742ce9

+ 1 - 0
src/adjuster/adjuster-event.service.ts

@@ -7,5 +7,6 @@ export class AdjusterEventService {
   loaded: Subject<{success: boolean; type: string; err?}> = new Subject();
   loaderReady: Subject<void> = new Subject();
   methodChanged: Subject<string> = new Subject();
+  ontologyLoads: Subject<any> = new Subject();
   constructor() {}
 }

+ 20 - 23
src/adjuster/adjuster-presets.service.ts

@@ -1,7 +1,7 @@
 import {Injectable} from '@angular/core';
-import {BehaviorSubject} from 'rxjs';
+import {BehaviorSubject, Subject} from 'rxjs';
 
-import ontology from '../data/rural_attractiveness.owl.json';
+import {AdjusterEventService} from './adjuster-event.service';
 
 @Injectable({providedIn: 'root'})
 export class AdjusterPresetsService {
@@ -9,16 +9,20 @@ export class AdjusterPresetsService {
   activeRole: Role;
   activeSchema: Schema;
 
-  schemaChanges: BehaviorSubject<Schema>;
-  problemChanges: BehaviorSubject<Problem>;
+  schemaChanges: Subject<Schema> = new Subject();
+  problemChanges: Subject<Problem> = new Subject();
 
+  ontology;
   roles: Role[] = [];
   schemas: Schema[] = [];
 
-  constructor() {
-    this.loadRoles();
-    this.loadSchemas();
-    this.problemChanges = new BehaviorSubject(this.activeProblem ?? null);
+  constructor(public adjusterEventService: AdjusterEventService) {
+    this.adjusterEventService.ontologyLoads.subscribe((ontology) => {
+      this.ontology = ontology;
+      this.loadRoles();
+      this.loadSchemas();
+      this.problemChanges.next(this.activeProblem ?? null);
+    })
   }
 
   applyProblem(problem: Problem) {
@@ -32,19 +36,18 @@ export class AdjusterPresetsService {
   }
 
   getActiveRoleProblems(): Array<Problem> {
-    return this.activeRole.problems ?? [];
+    return this.activeRole?.problems ?? [];
   }
 
   getActiveSchemaGroups(): Array<DatasetGroup> {
     return this.activeSchema.groups ?? [];
   }
 
-  //TODO:  Where to store factor's (group's) weight??
   getGroupDatasets(groupID: string): Array<any> {
-    return ontology
+    return this.ontology
       .find((subject) => subject['@id'] == groupID)["http://www.semanticweb.org/attractiveness/hasDataset"]
       ?.map((entity) => {
-        const datasetEntity = ontology.find((subject) => subject['@id'] == entity['@id']);
+        const datasetEntity = this.ontology.find((subject) => subject['@id'] == entity['@id']);
         return {
           id: datasetEntity["@id"],
           name: datasetEntity["http://www.w3.org/2000/01/rdf-schema#label"][0]["@value"], //TODO: i18n this!
@@ -55,7 +58,7 @@ export class AdjusterPresetsService {
   }
 
   loadRoles() {
-    this.roles = ontology
+    this.roles = this.ontology
       .filter((subject) => subject['@type']?.includes("http://www.semanticweb.org/attractiveness/Role"))
       .map((subject) => {
         return {
@@ -63,7 +66,7 @@ export class AdjusterPresetsService {
           labels: subject["http://www.w3.org/2000/01/rdf-schema#label"],
           problems: subject["http://www.semanticweb.org/attractiveness/solvesProblem"].map(
             (problem) => {
-              const problemEntity = ontology.find((subject) => subject['@id'] == problem['@id']);
+              const problemEntity = this.ontology.find((subject) => subject['@id'] == problem['@id']);
               return {
                 id: problem['@id'],
                 labels: problemEntity?.["http://www.w3.org/2000/01/rdf-schema#label"],
@@ -75,11 +78,10 @@ export class AdjusterPresetsService {
       });
     this.activeRole = this.roles[0];
     this.activeProblem = this.roles[0].problems[0];
-    console.log("Roles", this.roles);
   }
 
   loadSchemas() {
-    this.schemas = ontology
+    this.schemas = this.ontology
       .filter((subject) => subject['@type']?.includes("http://www.semanticweb.org/attractiveness/ClassificationSchema"))
       .map((subject) => {
         return {
@@ -89,19 +91,14 @@ export class AdjusterPresetsService {
             (group) => {
               return {
                 id: group['@id'],
-                labels: ontology.find((subject) => subject['@id'] == group['@id'])?.["http://www.w3.org/2000/01/rdf-schema#label"]
+                labels: this.ontology.find((subject) => subject['@id'] == group['@id'])?.["http://www.w3.org/2000/01/rdf-schema#label"]
               }
             }
           )
         }
       });
     this.activeSchema = this.schemas[0];
-    if (this.schemaChanges === undefined) {
-      this.schemaChanges = new BehaviorSubject(this.activeSchema);
-    } else {
-      this.schemaChanges.next(this.activeSchema);
-    }
-    console.log("Schemas", this.schemas);
+    this.schemaChanges.next(this.activeSchema);
   }
 
   pickProblem(role) {

+ 16 - 0
src/adjuster/adjuster.service.ts

@@ -66,6 +66,8 @@ export class AdjusterService {
     );
     this.numberOfClusters = 9;
 
+    this.loadOntology();
+
     /* Wait for all layers to be ready */
     this.adjusterEventService.layerReady.subscribe(({name}) => {
       console.log(name + ' ready!');
@@ -80,6 +82,7 @@ export class AdjusterService {
     forkJoin({
       lyr: this.adjusterEventService.layerReady,
       load: this.adjusterEventService.loaderReady,
+      ont: this.adjusterEventService.ontologyLoads,
     }).subscribe(() => {
       console.log('Oll layers Korekt! Initializing adjuster...');
       //this._loadInProcess = false;
@@ -351,6 +354,19 @@ export class AdjusterService {
       });
   }
 
+  async loadOntology() {
+    try {
+      const onto = await this.$http.get(this.serviceBaseUrl + 'ontology/').toPromise();
+      this.adjusterEventService.ontologyLoads.next(onto);
+      this.adjusterEventService.ontologyLoads.complete();
+    } catch (error) {
+      this.hsToastService.createToastPopupMessage('Error loading ontology', `Web service at ${this.serviceBaseUrl} unavailable!`);
+        console.warn(`Web service at ${this.serviceBaseUrl} unavailable!`);
+        console.log(error);
+        this._loadInProcess = false;
+    }
+  }
+
   processIndex(codeRecordRelations: Record<string, unknown>): void {
     /*if (obce.getFeatures()?.length < 1) {
       obce.once('changefeature', () => this.processIndex(codeRecordRelations));

+ 0 - 5664
src/data/rural_attractiveness.owl.json

@@ -1,5664 +0,0 @@
-[ {
-  "@id" : "_:genid1",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Pocet praktickych lekaru"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GPoffices"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Number of GP Offices"
-  } ]
-}, {
-  "@id" : "_:genid10",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Pocet zubnich lekaru"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/dentists"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Number of Dentists in the Municipality"
-  } ]
-}, {
-  "@id" : "_:genid11",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Snadne podnikani"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/easybusiness"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Ease of doing business"
-  } ]
-}, {
-  "@id" : "_:genid12",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Index ekologicke stability"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/ecologicallystableareas"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Index describing the amount of ecologically stable areas in the municipality"
-  } ]
-}, {
-  "@id" : "_:genid13",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Index ekonomicke svobody"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/economyfreedomindex"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Economy freedom index"
-  } ]
-}, {
-  "@id" : "_:genid14",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Zamestnanost v kulture"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/employmentinculture"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Employment in culture"
-  } ]
-}, {
-  "@id" : "_:genid15",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Vydaje na rekreaci, kulturu a nabozenstvi"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/expenditureonrecreation"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Expenditure of recreation, culture and religion"
-  } ]
-}, {
-  "@id" : "_:genid16",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Pocet rychlostnich silnic prochazejicich obci"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/fastroads"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Number of fastroads intersecting the municipality"
-  } ]
-}, {
-  "@id" : "_:genid17",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Spotreba hnojiv"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/fertilizers"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Fertilizers consumption"
-  } ]
-}, {
-  "@id" : "_:genid18",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Podil lesnich ploch v obci"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/forestarea"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of Forest Area in the Total Area of the Municipality"
-  } ]
-}, {
-  "@id" : "_:genid19",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Index svobody"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/freedomindex"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Freedom index"
-  } ]
-}, {
-  "@id" : "_:genid2",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Podil zemedelskych ploch v obci"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/agriculturearea"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of Agriculture Area in the Total Area of the Municipality"
-  } ]
-}, {
-  "@id" : "_:genid20",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Vládní výdaje podle funkce"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/governmentexpenditure"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Government expenditure by function"
-  } ]
-}, {
-  "@id" : "_:genid21",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Emise sklenikovych plynu"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/greenhousegasemmision"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Greenhouse gases emmisions"
-  } ]
-}, {
-  "@id" : "_:genid22",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Index lidskeho rozvoje"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/hdi"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "HDI"
-  } ]
-}, {
-  "@id" : "_:genid23",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Pocet strednich skol"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/highschools"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Number of High Schools in the Municipality"
-  } ]
-}, {
-  "@id" : "_:genid24",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Pocet dalnic prochazejicich obci"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/highways"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Number of highways intersecting the municipality"
-  } ]
-}, {
-  "@id" : "_:genid25",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Pocet nemocnic"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/hospitals"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Number of Hospitals  in the Municipality"
-  } ]
-}, {
-  "@id" : "_:genid26",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Podil osob zijicich v domacnosti pripojenych k plynovodu"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithgas"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of people living in household connected to gas piping"
-  } ]
-}, {
-  "@id" : "_:genid27",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Podil osob zijicich v domacnosti pripojene ke kanalizaci"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithsewerage"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of people living in household connected to sewerage system"
-  } ]
-}, {
-  "@id" : "_:genid28",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Podil osob zijicich v domacnosti pripojene k vodovodu"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithwater"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of people living in household connected to water piping"
-  } ]
-}, {
-  "@id" : "_:genid29",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Migracni saldo"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/immigrationrate"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Difference between emigrants and immigrants per 1000 inhabitants throughout the year"
-  } ]
-}, {
-  "@id" : "_:genid3",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Vzdalenost obce od nejblizsiho letiste"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/airportdistance"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Distance of the municipality from the nearest airport in meters"
-  } ]
-}, {
-  "@id" : "_:genid30",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Nizkorozpoctove farmy"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/lowinputfarms"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Low input farms"
-  } ]
-}, {
-  "@id" : "_:genid31",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Mira snatecnosti"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/marriagerate"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Marriage rate"
-  } ]
-}, {
-  "@id" : "_:genid32",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Pocet novostaveb v obci"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/newbuilthouses"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Number of New-build Households in the Municipality"
-  } ]
-}, {
-  "@id" : "_:genid33",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Nadbytek dusiku v pude"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/nitrogensurplus"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Nitrogen surplus in soils"
-  } ]
-}, {
-  "@id" : "_:genid34",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Pocet detskych lekaru"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/paediatricianoffices"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Number of Paediatrician Offices in the Municipality"
-  } ]
-}, {
-  "@id" : "_:genid35",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Prodej pesticidu podle plochy"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/pesticidessale"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Pesticides sales per area"
-  } ]
-}, {
-  "@id" : "_:genid36",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Pocet lekaren"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/pharmacies"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Number of Pharmacies in the Municipality"
-  } ]
-}, {
-  "@id" : "_:genid37",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Nadbytek fosforu v pude"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/phosphorussurplus"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Phosphorus surplus in soils"
-  } ]
-}, {
-  "@id" : "_:genid38",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Podil osob se zakladnim vzdelanim"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/primaryeducation"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of people with primary education only including not-graduated people"
-  } ]
-}, {
-  "@id" : "_:genid39",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Podil osob pracujicich v primarnim sektroru"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/primarysector"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of people working in primary sector"
-  } ]
-}, {
-  "@id" : "_:genid4",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Prumerny vek v populaci"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/averageage"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Average age in population"
-  } ]
-}, {
-  "@id" : "_:genid40",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Odhadovana populace starsich osob v roce 2030"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/projectedoldagepopulation"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Projected old-age population in 2030"
-  } ]
-}, {
-  "@id" : "_:genid41",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Chranena uzemi"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/protectedareas"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Protected areas"
-  } ]
-}, {
-  "@id" : "_:genid42",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Vyroba obnovitelne elektriny"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/renewableenergy"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Renewable electricity output"
-  } ]
-}, {
-  "@id" : "_:genid43",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Spokojenost1"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/satisfaction1"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Satisfaction1"
-  } ]
-}, {
-  "@id" : "_:genid44",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Spokojenost2"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/satisfaction2"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Satisfaction2"
-  } ]
-}, {
-  "@id" : "_:genid45",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Podil osob pracujicich v sekundarnim sektrou"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/secondarysector"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of people working in secondary sector"
-  } ]
-}, {
-  "@id" : "_:genid46",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Male farmy"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/smallfarms"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Small farms"
-  } ]
-}, {
-  "@id" : "_:genid47",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Pocet vlakovych zastavek v obci"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/trainstation"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Number of train stations in the municipality"
-  } ]
-}, {
-  "@id" : "_:genid48",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Podil nezamestnanych hendikepovanych osob v registru nezamestnanych"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployeddisabled"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of Unemployed Dissabled People in All Registered Unemployed"
-  } ]
-}, {
-  "@id" : "_:genid49",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Podil nezamestnanych muzu"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedmen"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "The ratio of unemployed men"
-  } ]
-}, {
-  "@id" : "_:genid5",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Pocet narozenych na 1000 obyvatel"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/birthrate"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Number of Births per 1000 Inhabitants"
-  } ]
-}, {
-  "@id" : "_:genid50",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Podil nezamestnanych osob"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedpopulation"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@value" : "The ratio of unemployed population"
-  } ]
-}, {
-  "@id" : "_:genid51",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Podil nezamestnanych zen"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedwomen"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "The ratio of unemployed women"
-  } ]
-}, {
-  "@id" : "_:genid52",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Podil nezamestnanych mladych v registru nezamestnanych"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedyouth"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of Unemployed Youth in All Registered Unemployed"
-  } ]
-}, {
-  "@id" : "_:genid53",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Mira nezamestnanosti"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemploymentrate"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Unemployment rate"
-  } ]
-}, {
-  "@id" : "_:genid54",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Podil osob s vysokoskolskym vzdelanim"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/universityeducation"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of people with university education"
-  } ]
-}, {
-  "@id" : "_:genid55",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Mladi v populaci"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/youngpopulation"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Young in population"
-  } ]
-}, {
-  "@id" : "_:genid56",
-  "@type" : [ "http://www.w3.org/2003/11/swrl#Imp" ],
-  "http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#boolean",
-    "@value" : "true"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#comment" : [ {
-    "@value" : ""
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Europe2CZ"
-  } ],
-  "http://www.w3.org/2003/11/swrl#body" : [ {
-    "@list" : [ {
-      "@id" : "_:genid60"
-    }, {
-      "@id" : "_:genid58"
-    } ]
-  } ],
-  "http://www.w3.org/2003/11/swrl#head" : [ {
-    "@list" : [ {
-      "@id" : "_:genid62"
-    } ]
-  } ]
-}, {
-  "@id" : "_:genid58",
-  "@type" : [ "http://www.w3.org/2003/11/swrl#ClassAtom" ],
-  "http://www.w3.org/2003/11/swrl#argument1" : [ {
-    "@id" : "http://www.semanticweb.org/otakar/ontologies/2021/7/untitled-ontology-10#x"
-  } ],
-  "http://www.w3.org/2003/11/swrl#classPredicate" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Dataset"
-  } ]
-}, {
-  "@id" : "_:genid6",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Podil zastavene plochy"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/builtuparea"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of Built-up Area in the Total Area of the Municipality"
-  } ]
-}, {
-  "@id" : "_:genid60",
-  "@type" : [ "http://www.w3.org/2003/11/swrl#IndividualPropertyAtom" ],
-  "http://www.w3.org/2003/11/swrl#argument1" : [ {
-    "@id" : "http://www.semanticweb.org/otakar/ontologies/2021/7/untitled-ontology-10#x"
-  } ],
-  "http://www.w3.org/2003/11/swrl#argument2" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.w3.org/2003/11/swrl#propertyPredicate" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/hasCoverage"
-  } ]
-}, {
-  "@id" : "_:genid62",
-  "@type" : [ "http://www.w3.org/2003/11/swrl#IndividualPropertyAtom" ],
-  "http://www.w3.org/2003/11/swrl#argument1" : [ {
-    "@id" : "http://www.semanticweb.org/otakar/ontologies/2021/7/untitled-ontology-10#x"
-  } ],
-  "http://www.w3.org/2003/11/swrl#argument2" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.w3.org/2003/11/swrl#propertyPredicate" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/hasCoverage"
-  } ]
-}, {
-  "@id" : "_:genid63",
-  "@type" : [ "http://www.w3.org/2003/11/swrl#Imp" ],
-  "http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#boolean",
-    "@value" : "true"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#comment" : [ {
-    "@value" : ""
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "LAU22Municipality"
-  } ],
-  "http://www.w3.org/2003/11/swrl#body" : [ {
-    "@list" : [ {
-      "@id" : "_:genid67"
-    }, {
-      "@id" : "_:genid65"
-    } ]
-  } ],
-  "http://www.w3.org/2003/11/swrl#head" : [ {
-    "@list" : [ {
-      "@id" : "_:genid69"
-    } ]
-  } ]
-}, {
-  "@id" : "_:genid65",
-  "@type" : [ "http://www.w3.org/2003/11/swrl#ClassAtom" ],
-  "http://www.w3.org/2003/11/swrl#argument1" : [ {
-    "@id" : "http://www.semanticweb.org/otakar/ontologies/2021/7/untitled-ontology-10#x"
-  } ],
-  "http://www.w3.org/2003/11/swrl#classPredicate" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Dataset"
-  } ]
-}, {
-  "@id" : "_:genid67",
-  "@type" : [ "http://www.w3.org/2003/11/swrl#IndividualPropertyAtom" ],
-  "http://www.w3.org/2003/11/swrl#argument1" : [ {
-    "@id" : "http://www.semanticweb.org/otakar/ontologies/2021/7/untitled-ontology-10#x"
-  } ],
-  "http://www.w3.org/2003/11/swrl#argument2" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  } ],
-  "http://www.w3.org/2003/11/swrl#propertyPredicate" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/hasLoD"
-  } ]
-}, {
-  "@id" : "_:genid69",
-  "@type" : [ "http://www.w3.org/2003/11/swrl#IndividualPropertyAtom" ],
-  "http://www.w3.org/2003/11/swrl#argument1" : [ {
-    "@id" : "http://www.semanticweb.org/otakar/ontologies/2021/7/untitled-ontology-10#x"
-  } ],
-  "http://www.w3.org/2003/11/swrl#argument2" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.w3.org/2003/11/swrl#propertyPredicate" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/hasLoD"
-  } ]
-}, {
-  "@id" : "_:genid7",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Vydaje domacnosti na kulturu a rekreaci"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/consumptionofculture"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Household consumption of culture and recreation"
-  } ]
-}, {
-  "@id" : "_:genid70",
-  "@type" : [ "http://www.w3.org/2003/11/swrl#Imp" ],
-  "http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#boolean",
-    "@value" : "true"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#comment" : [ {
-    "@value" : ""
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "NUTS02Country"
-  } ],
-  "http://www.w3.org/2003/11/swrl#body" : [ {
-    "@list" : [ {
-      "@id" : "_:genid74"
-    }, {
-      "@id" : "_:genid72"
-    } ]
-  } ],
-  "http://www.w3.org/2003/11/swrl#head" : [ {
-    "@list" : [ {
-      "@id" : "_:genid76"
-    } ]
-  } ]
-}, {
-  "@id" : "_:genid72",
-  "@type" : [ "http://www.w3.org/2003/11/swrl#ClassAtom" ],
-  "http://www.w3.org/2003/11/swrl#argument1" : [ {
-    "@id" : "http://www.semanticweb.org/otakar/ontologies/2021/7/untitled-ontology-10#x"
-  } ],
-  "http://www.w3.org/2003/11/swrl#classPredicate" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Dataset"
-  } ]
-}, {
-  "@id" : "_:genid74",
-  "@type" : [ "http://www.w3.org/2003/11/swrl#IndividualPropertyAtom" ],
-  "http://www.w3.org/2003/11/swrl#argument1" : [ {
-    "@id" : "http://www.semanticweb.org/otakar/ontologies/2021/7/untitled-ontology-10#x"
-  } ],
-  "http://www.w3.org/2003/11/swrl#argument2" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS2"
-  } ],
-  "http://www.w3.org/2003/11/swrl#propertyPredicate" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/hasLoD"
-  } ]
-}, {
-  "@id" : "_:genid76",
-  "@type" : [ "http://www.w3.org/2003/11/swrl#IndividualPropertyAtom" ],
-  "http://www.w3.org/2003/11/swrl#argument1" : [ {
-    "@id" : "http://www.semanticweb.org/otakar/ontologies/2021/7/untitled-ontology-10#x"
-  } ],
-  "http://www.w3.org/2003/11/swrl#argument2" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/country"
-  } ],
-  "http://www.w3.org/2003/11/swrl#propertyPredicate" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/hasLoD"
-  } ]
-}, {
-  "@id" : "_:genid77",
-  "@type" : [ "http://www.w3.org/2003/11/swrl#Imp" ],
-  "http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#boolean",
-    "@value" : "true"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#comment" : [ {
-    "@value" : "Valid only for Europe"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Country2NUTS2"
-  } ],
-  "http://www.w3.org/2003/11/swrl#body" : [ {
-    "@list" : [ {
-      "@id" : "_:genid81"
-    }, {
-      "@id" : "_:genid79"
-    } ]
-  } ],
-  "http://www.w3.org/2003/11/swrl#head" : [ {
-    "@list" : [ {
-      "@id" : "_:genid83"
-    } ]
-  } ]
-}, {
-  "@id" : "_:genid79",
-  "@type" : [ "http://www.w3.org/2003/11/swrl#ClassAtom" ],
-  "http://www.w3.org/2003/11/swrl#argument1" : [ {
-    "@id" : "http://www.semanticweb.org/otakar/ontologies/2021/7/untitled-ontology-10#x"
-  } ],
-  "http://www.w3.org/2003/11/swrl#classPredicate" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Dataset"
-  } ]
-}, {
-  "@id" : "_:genid8",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Ucast na kulturnich akcich"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/culturalactivities"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Participation in cultural activities"
-  } ]
-}, {
-  "@id" : "_:genid81",
-  "@type" : [ "http://www.w3.org/2003/11/swrl#IndividualPropertyAtom" ],
-  "http://www.w3.org/2003/11/swrl#argument1" : [ {
-    "@id" : "http://www.semanticweb.org/otakar/ontologies/2021/7/untitled-ontology-10#x"
-  } ],
-  "http://www.w3.org/2003/11/swrl#argument2" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/country"
-  } ],
-  "http://www.w3.org/2003/11/swrl#propertyPredicate" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/hasLoD"
-  } ]
-}, {
-  "@id" : "_:genid83",
-  "@type" : [ "http://www.w3.org/2003/11/swrl#IndividualPropertyAtom" ],
-  "http://www.w3.org/2003/11/swrl#argument1" : [ {
-    "@id" : "http://www.semanticweb.org/otakar/ontologies/2021/7/untitled-ontology-10#x"
-  } ],
-  "http://www.w3.org/2003/11/swrl#argument2" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS0"
-  } ],
-  "http://www.w3.org/2003/11/swrl#propertyPredicate" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/hasLoD"
-  } ]
-}, {
-  "@id" : "_:genid84",
-  "@type" : [ "http://www.w3.org/2003/11/swrl#Imp" ],
-  "http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#boolean",
-    "@value" : "true"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#comment" : [ {
-    "@value" : ""
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Municipality2LAU2"
-  } ],
-  "http://www.w3.org/2003/11/swrl#body" : [ {
-    "@list" : [ {
-      "@id" : "_:genid88"
-    }, {
-      "@id" : "_:genid86"
-    } ]
-  } ],
-  "http://www.w3.org/2003/11/swrl#head" : [ {
-    "@list" : [ {
-      "@id" : "_:genid90"
-    } ]
-  } ]
-}, {
-  "@id" : "_:genid86",
-  "@type" : [ "http://www.w3.org/2003/11/swrl#ClassAtom" ],
-  "http://www.w3.org/2003/11/swrl#argument1" : [ {
-    "@id" : "http://www.semanticweb.org/otakar/ontologies/2021/7/untitled-ontology-10#x"
-  } ],
-  "http://www.w3.org/2003/11/swrl#classPredicate" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Dataset"
-  } ]
-}, {
-  "@id" : "_:genid88",
-  "@type" : [ "http://www.w3.org/2003/11/swrl#IndividualPropertyAtom" ],
-  "http://www.w3.org/2003/11/swrl#argument1" : [ {
-    "@id" : "http://www.semanticweb.org/otakar/ontologies/2021/7/untitled-ontology-10#x"
-  } ],
-  "http://www.w3.org/2003/11/swrl#argument2" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.w3.org/2003/11/swrl#propertyPredicate" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/hasLoD"
-  } ]
-}, {
-  "@id" : "_:genid9",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Axiom" ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "cz",
-    "@value" : "Pocet umrti na 1000 obyvatel"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedProperty" : [ {
-    "@id" : "http://www.w3.org/2000/01/rdf-schema#label"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/deathrate"
-  } ],
-  "http://www.w3.org/2002/07/owl#annotatedTarget" : [ {
-    "@language" : "en",
-    "@value" : "Number of Deaths per 1000 Inhabitants"
-  } ]
-}, {
-  "@id" : "_:genid90",
-  "@type" : [ "http://www.w3.org/2003/11/swrl#IndividualPropertyAtom" ],
-  "http://www.w3.org/2003/11/swrl#argument1" : [ {
-    "@id" : "http://www.semanticweb.org/otakar/ontologies/2021/7/untitled-ontology-10#x"
-  } ],
-  "http://www.w3.org/2003/11/swrl#argument2" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  } ],
-  "http://www.w3.org/2003/11/swrl#propertyPredicate" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/hasLoD"
-  } ]
-}, {
-  "@id" : "http://purl.org/dc/terms/title",
-  "@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty" ]
-}, {
-  "@id" : "http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled",
-  "@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty" ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Ontology" ],
-  "http://purl.org/dc/terms/title" : [ {
-    "@value" : "Regional Attractivenss - Ontology"
-  } ],
-  "http://www.w3.org/2002/07/owl#versionIRI" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/CZFarmer",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Role" ],
-  "http://www.semanticweb.org/attractiveness/solvesProblem" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationFarm"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Farmer in Czech republic"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/CZMayor",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Role" ],
-  "http://www.semanticweb.org/attractiveness/solvesProblem" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/MunicipalSewage"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Mayor of small czech municipality"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/CZYoungFamily",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Role" ],
-  "http://www.semanticweb.org/attractiveness/solvesProblem" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NewHouse"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Young family in Czech republic"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/CatoInstitute",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Source" ],
-  "http://www.semanticweb.org/attractiveness/isSourceOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/economyfreedomindex"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/freedomindex"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Cato Institute"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/ClassificationSchema",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Class" ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/Coverage",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Class" ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Coverage" ],
-  "http://www.semanticweb.org/attractiveness/isCoverageOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GPoffices"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/agriculturearea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/airportdistance"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/artificialland"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/birthrate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/builtuparea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/consumptionofculture"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/culturalactivities"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/deathrate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/dentists"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/easybusiness"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/ecologicallystableareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/economyfreedomindex"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/employmentinculture"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/expenditureonrecreation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/fastroads"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/fertilizers"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/forestarea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/freedomindex"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/governmentexpenditure"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/greenhousegasemmision"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/hdi"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/highschools"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/highways"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/hospitals"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithgas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithsewerage"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithwater"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/immigrationrate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/lowinputfarms"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/marriagerate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/newbuilthouses"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/nitrogensurplus"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/paediatricianoffices"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/pesticidessale"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/pharmacies"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/phosphorussurplus"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/primaryeducation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/primarysector"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/projectedoldagepopulation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/protectedareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/renewableenergy"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/satisfaction1"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/satisfaction2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/smallfarms"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/socialassistence"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/trainstation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployeddisabled"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedmen"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedpopulation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedwomen"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedyouth"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemploymentrate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/universityeducation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/youngpopulation"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Czech Republic"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Source" ],
-  "http://www.semanticweb.org/attractiveness/isSourceOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GPoffices"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/agriculturearea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/airportdistance"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/birthrate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/builtuparea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/deathrate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/dentists"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/ecologicallystableareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/fastroads"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/forestarea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/highschools"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/highways"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/hospitals"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithgas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithsewerage"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithwater"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/immigrationrate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/newbuilthouses"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/paediatricianoffices"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/pharmacies"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/primaryeducation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/primarysector"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/socialassistence"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/trainstation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployeddisabled"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedmen"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedpopulation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedwomen"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedyouth"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/universityeducation"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Czech Statistical Office"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/Dataset",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Class" ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/EUInvestor",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Role" ],
-  "http://www.semanticweb.org/attractiveness/solvesProblem" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationOfHotel"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationOfWarehouse"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Investor in Europe"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/EcotourismSupport",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Problem" ],
-  "http://www.semanticweb.org/attractiveness/isProblemOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/RegionalGovernment"
-  } ],
-  "http://www.semanticweb.org/attractiveness/requiresDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/artificialland"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/consumptionofculture"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/ecologicallystableareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/expenditureonrecreation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/forestarea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/governmentexpenditure"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/greenhousegasemmision"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/protectedareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/smallfarms"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Support of ecotourism in region"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/Europe",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Coverage" ],
-  "http://www.semanticweb.org/attractiveness/isCoverageOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/artificialland"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/consumptionofculture"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/culturalactivities"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/easybusiness"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/economyfreedomindex"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/employmentinculture"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/expenditureonrecreation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/fertilizers"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/freedomindex"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/governmentexpenditure"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/greenhousegasemmision"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/hdi"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/lowinputfarms"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/marriagerate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/nitrogensurplus"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/pesticidessale"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/phosphorussurplus"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/projectedoldagepopulation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/protectedareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/renewableenergy"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/satisfaction1"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/satisfaction2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/smallfarms"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemploymentrate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/youngpopulation"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Europe"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/Eurostat",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Source" ],
-  "http://www.semanticweb.org/attractiveness/isSourceOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/artificialland"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/consumptionofculture"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/culturalactivities"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/employmentinculture"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/expenditureonrecreation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/governmentexpenditure"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/greenhousegasemmision"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/lowinputfarms"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/marriagerate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/nitrogensurplus"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/pesticidessale"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/phosphorussurplus"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/projectedoldagepopulation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/satisfaction1"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/satisfaction2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/smallfarms"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemploymentrate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/youngpopulation"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Eurostat"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/GEMET",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/ClassificationSchema" ],
-  "http://www.semanticweb.org/attractiveness/consistsOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/administration"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/agriculture"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/air"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/animalhusbandry"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/biology"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/building"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/chemistry"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/climate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/disasters"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/economics"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/energy"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/environmentalpolicy"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/fishery"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/food"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/forestry"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/general"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/geography"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/humanhealth"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/industry"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/information"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/legislation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/materials"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/military"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/naturalareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/naturaldynamics"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/noise"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/physics"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/pollution"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/radiation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/research"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/resources"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/socialaspects"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/soil"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/space"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/tourism"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/trade"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/transport"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/urbanenvironment"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/waste"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/water"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.eionet.europa.eu/gemet/en/themes/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/GPoffices",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/healthpathology"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/humanhealth"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/wellbeing"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2018"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Number of GP Offices"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/Group",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Class" ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/LAU1",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/LevelOfDetail" ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/LAU2",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/LevelOfDetail" ],
-  "http://www.semanticweb.org/attractiveness/isLoDOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GPoffices"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/agriculturearea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/airportdistance"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/birthrate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/builtuparea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/deathrate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/dentists"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/ecologicallystableareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/fastroads"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/forestarea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/highschools"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/highways"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/hospitals"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithgas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithsewerage"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithwater"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/immigrationrate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/newbuilthouses"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/paediatricianoffices"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/pharmacies"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/primaryeducation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/primarysector"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/socialassistence"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/trainstation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployeddisabled"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedmen"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedpopulation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedwomen"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedyouth"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/universityeducation"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/LevelOfDetail",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Class" ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/LocationFarm",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Problem" ],
-  "http://www.semanticweb.org/attractiveness/isProblemOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CZFarmer"
-  } ],
-  "http://www.semanticweb.org/attractiveness/requiresDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/agriculturearea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/easybusiness"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/ecologicallystableareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/fertilizers"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/lowinputfarms"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/nitrogensurplus"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/pesticidessale"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/phosphorussurplus"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/primarysector"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/smallfarms"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Location of a new eco farm"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/LocationOfHotel",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Problem" ],
-  "http://www.semanticweb.org/attractiveness/isProblemOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/EUInvestor"
-  } ],
-  "http://www.semanticweb.org/attractiveness/requiresDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/airportdistance"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/consumptionofculture"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/easybusiness"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/ecologicallystableareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/expenditureonrecreation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/forestarea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/highways"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/protectedareas"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Location of a new hotel for ecoturism"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/LocationOfWarehouse",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Problem" ],
-  "http://www.semanticweb.org/attractiveness/isProblemOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/EUInvestor"
-  } ],
-  "http://www.semanticweb.org/attractiveness/requiresDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/airportdistance"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/easybusiness"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/economyfreedomindex"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/fastroads"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/highways"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemploymentrate"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Location of a new logistic warehouse"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/MunicipalSewage",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Problem" ],
-  "http://www.semanticweb.org/attractiveness/requiresDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithsewerage"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithwater"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/newbuilthouses"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Extension of municipal sewerage"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/NAL",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/ClassificationSchema" ],
-  "http://www.semanticweb.org/attractiveness/consistsOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/animalscience"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/biologicalscience"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/breeding"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/business"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/entomology"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/farmingsystem"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/forestscience"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/geographicallocation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/governmentregulation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/healthpathology"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/naturalresources"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/nutrition"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/plantscience"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/ruralsociology"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/science"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/taxonomicclassification"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/technologyengineering"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "NAL"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://agclass.nal.usda.gov/thesaurus-search"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/NUTS0",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/LevelOfDetail" ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/NUTS1",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/LevelOfDetail" ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/NUTS2",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/LevelOfDetail" ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/NUTS3",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/LevelOfDetail" ],
-  "http://www.semanticweb.org/attractiveness/isLoDOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/artificialland"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/consumptionofculture"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/culturalactivities"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/easybusiness"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/economyfreedomindex"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/employmentinculture"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/expenditureonrecreation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/fertilizers"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/freedomindex"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/governmentexpenditure"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/greenhousegasemmision"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/hdi"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/lowinputfarms"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/marriagerate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/nitrogensurplus"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/pesticidessale"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/phosphorussurplus"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/projectedoldagepopulation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/protectedareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/renewableenergy"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/satisfaction1"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/satisfaction2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/smallfarms"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemploymentrate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/youngpopulation"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/NewHouse",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Problem" ],
-  "http://www.semanticweb.org/attractiveness/isProblemOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CZYoungFamily"
-  } ],
-  "http://www.semanticweb.org/attractiveness/requiresDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/agriculturearea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/airportdistance"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/builtuparea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/culturalactivities"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/ecologicallystableareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/fastroads"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/forestarea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/greenhousegasemmision"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/highways"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/newbuilthouses"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/paediatricianoffices"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/pharmacies"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/protectedareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/satisfaction1"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/satisfaction2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/youngpopulation"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Where to move to a calm countryside"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/Polirural",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/ClassificationSchema" ],
-  "http://www.semanticweb.org/attractiveness/consistsOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/anthropic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/cultural"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/economic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/institutional"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/natural"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/social"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Polirural"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/Problem",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Class" ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/RRI",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/ClassificationSchema" ],
-  "http://www.semanticweb.org/attractiveness/consistsOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/education"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/ethics"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/genderequality"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/governance"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/openaccess"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/publicengagement"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "RRI Pillars"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://rri-tools.eu/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/RegionalGovernment",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Role" ],
-  "http://www.semanticweb.org/attractiveness/solvesProblem" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/EcotourismSupport"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/SupportForDisabled"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Regional government"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/Role",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Class" ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/ScoutLeader",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Role" ],
-  "http://www.semanticweb.org/attractiveness/solvesProblem" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/TripDestination"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Scout leader in Czech republic"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/Source",
-  "@type" : [ "http://www.w3.org/2002/07/owl#Class" ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/SupportForDisabled",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Problem" ],
-  "http://www.semanticweb.org/attractiveness/isProblemOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/RegionalGovernment"
-  } ],
-  "http://www.semanticweb.org/attractiveness/requiresDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/socialassistence"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployeddisabled"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Support for disabled people"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/TripDestination",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Problem" ],
-  "http://www.semanticweb.org/attractiveness/isProblemOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/ScoutLeader"
-  } ],
-  "http://www.semanticweb.org/attractiveness/requiresDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/ecologicallystableareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/forestarea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/protectedareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/trainstation"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Destination of a train trip to nature"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/UN",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Source" ],
-  "http://www.semanticweb.org/attractiveness/isSourceOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/hdi"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/UNSDG",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/ClassificationSchema" ],
-  "http://www.semanticweb.org/attractiveness/consistsOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/cleanenergy"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/cleanwater"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/climateaction"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/decentwork"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/gender"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/inequalities"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/innovation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/lifebelowwater"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/lifeonland"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/partnership"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/peace"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/poverty"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/qualityeducation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/responsibleconsumption"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/sustainablecities"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/wellbeing"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/zerohunger"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "UNSDGs"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://sdgs.un.org/goals"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/WorldBank",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Source" ],
-  "http://www.semanticweb.org/attractiveness/isSourceOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/easybusiness"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/fertilizers"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/protectedareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/renewableenergy"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "World Bank"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/administration",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/easybusiness"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/governmentexpenditure"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - administration"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/1/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/agriculture",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/agriculturearea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/fertilizers"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/lowinputfarms"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/nitrogensurplus"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/pesticidessale"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/phosphorussurplus"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/primarysector"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/smallfarms"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - agriculture"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/2/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/agriculturearea",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/agriculture"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/farmingsystem"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/zerohunger"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationFarm"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/NewHouse"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2019"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of Agriculture Area in the Total Area of the Municipality"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/air",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/greenhousegasemmision"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - air"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/3/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/airportdistance",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/sustainablecities"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/transport"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationOfHotel"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationOfWarehouse"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/NewHouse"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2020"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Distance of the municipality from the nearest airport in meters"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/animalhusbandry",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - animal husbandry"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/18/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/animalscience",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NAL"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "NAL - Animal Science and Animal Products"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://agclass.nal.usda.gov/mtwdk.exe?k=default&l=60&s=1&n=1&y=0&w=Animal%20Science%20and%20Animal%20Products&t=3"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/anthropic",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/artificialland"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/protectedareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/renewableenergy"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Polirural"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Polirural - Anthropic"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/artificialland",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Eurostat"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/anthropic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/urbanenvironment"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/EcotourismSupport"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2015"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Artificial land"
-  }, {
-    "@language" : "cs",
-    "@value" : "Clovekem pretvorene plochy"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/averageage",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/healthpathology"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/humanhealth"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/socialaspects"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/wellbeing"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2019"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Average age in population"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/biologicalscience",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NAL"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "NAL - Biological Sciences"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://agclass.nal.usda.gov/mtwdk.exe?k=default&l=60&s=1&n=1&y=0&w=Biological%20Sciences&t=3"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/biology",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - biology"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/4/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/birthrate",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/socialaspects"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/wellbeing"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2019"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Number of Births per 1000 Inhabitants"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/breeding",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NAL"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "NAL - Breeding and Genetic Improvement"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://agclass.nal.usda.gov/mtwdk.exe?k=default&l=60&s=1&n=1&y=0&w=Breeding%20and%20Genetic%20Improvement&t=3"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/building",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/newbuilthouses"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - building"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/5/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/builtuparea",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/sustainablecities"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/urbanenvironment"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NewHouse"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.arcdata.cz/produkty/geograficka-data/arccr-500"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2020"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of Built-up Area in the Total Area of the Municipality"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/business",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/easybusiness"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/economyfreedomindex"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/expenditureonrecreation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/governmentexpenditure"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NAL"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "NAL - Economics, Business and Industry"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://agclass.nal.usda.gov/mtwdk.exe?k=default&l=60&s=1&n=1&y=0&w=Economics%2C%20Business%20and%20Industry&t=3"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/chemistry",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - chemistry"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/6/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/cleanenergy",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/UNSDG"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "UNSDGs - Affordable and clean energy"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://sdgs.un.org/goals/goal7"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/cleanwater",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithsewerage"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithwater"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/UNSDG"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "UNSDGs - Clean water and sanitation"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://sdgs.un.org/goals/goal6"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/climate",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/greenhousegasemmision"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - climate"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/7/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/climateaction",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/ecologicallystableareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/forestarea"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/forestry"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/UNSDG"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "UNSDGs - Climate action"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://sdgs.un.org/goals/goal13"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/consistsOf",
-  "@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty", "http://www.w3.org/2002/07/owl#ObjectProperty" ],
-  "http://www.w3.org/2000/01/rdf-schema#domain" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/ClassificationSchema"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#range" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Group"
-  } ],
-  "http://www.w3.org/2002/07/owl#inverseOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/isPartOf"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/consumptionofculture",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Eurostat"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/cultural"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/economics"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/EcotourismSupport"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationOfHotel"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2017"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Household consumption of culture and recreation"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/continent",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/LevelOfDetail" ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/country",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/LevelOfDetail" ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/cultural",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/consumptionofculture"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/culturalactivities"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/employmentinculture"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/expenditureonrecreation"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Polirural"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Polirural - Cultural"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/culturalactivities",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Eurostat"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/cultural"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NewHouse"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2017"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Participation in cultural activities"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/deathrate",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/socialaspects"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/wellbeing"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2019"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Number of Deaths per 1000 Inhabitants"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/decentwork",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployeddisabled"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedpopulation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedyouth"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/UNSDG"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "UNSDGs - Decent work and economic growth"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://sdgs.un.org/goals/goal8"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/dentists",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/healthpathology"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/humanhealth"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/wellbeing"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2018"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Number of Dentists in the Municipality"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/disasters",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - disasters, accidents, risk"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/32/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/easybusiness",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/WorldBank"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/administration"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/business"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/economic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/economics"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationFarm"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationOfHotel"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationOfWarehouse"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2020"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Ease of doing business"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/ecologicallystableareas",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/climateaction"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/environmentalpolicy"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/lifeonland"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/naturalresources"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/urbanenvironment"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/EcotourismSupport"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationFarm"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationOfHotel"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/NewHouse"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/TripDestination"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2019"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Index describing the amount of ecologically stable areas in the municipality"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/economic",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/easybusiness"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/lowinputfarms"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/smallfarms"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Polirural"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Polirural - Economic"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/economics",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/consumptionofculture"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/easybusiness"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/expenditureonrecreation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/governmentexpenditure"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedmen"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedpopulation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedwomen"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - economics"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/9/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/economyfreedomindex",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CatoInstitute"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/business"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/institutional"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationOfWarehouse"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2018"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Economy freedom index"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/education",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/RRI"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "RRI Pillars - Science education"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://rri-tools.eu/science-education"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/employmentinculture",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Eurostat"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/cultural"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2018"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Employment in culture"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/energy",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/renewableenergy"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - energy"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/10/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/entomology",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NAL"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "NAL - Insects and Entomology"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://agclass.nal.usda.gov/mtwdk.exe?k=default&l=60&s=1&n=1&y=0&w=Insects%20and%20Entomology&t=3"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/environmentalpolicy",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/ecologicallystableareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/lowinputfarms"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/nitrogensurplus"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/pesticidessale"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/phosphorussurplus"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/protectedareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/renewableenergy"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - environmental policy"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/11/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/ethics",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/RRI"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "RRI Pillars - Ethics"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://rri-tools.eu/ethics"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/expenditureonrecreation",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Eurostat"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/business"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/cultural"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/economics"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/EcotourismSupport"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationOfHotel"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2017"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Expenditure of recreation, culture and religion"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/farmingsystem",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/agriculturearea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/fertilizers"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/lowinputfarms"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/pesticidessale"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/smallfarms"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NAL"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "NAL - Farms and Farming Systems"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://agclass.nal.usda.gov/mtwdk.exe?k=default&l=60&s=1&n=1&y=0&w=Farms%20and%20Farming%20Systems&t=3"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/fastroads",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/sustainablecities"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/transport"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationOfWarehouse"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/NewHouse"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.arcdata.cz/produkty/geograficka-data/arccr-500"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2020"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Number of fastroads intersecting the municipality"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/fertilizers",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/WorldBank"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/agriculture"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/farmingsystem"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/natural"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationFarm"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2016"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Fertilizers consumption"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/fishery",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - fishery"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/12/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/food",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - food, drinking water"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/13/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/forestarea",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/climateaction"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/forestscience"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/lifeonland"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/urbanenvironment"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/EcotourismSupport"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationOfHotel"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/NewHouse"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/TripDestination"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2019"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of Forest Area in the Total Area of the Municipality"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/forestry",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/forestarea"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - forestry"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/14/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/forestscience",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/forestarea"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NAL"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "NAL - Forest Science and Forest Products"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://agclass.nal.usda.gov/mtwdk.exe?k=default&l=60&s=1&n=1&y=0&w=Forest%20Science%20and%20Forest%20Products&t=3"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/freedomindex",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CatoInstitute"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/governmentregulation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/institutional"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2018"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Freedom index"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/gender",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedmen"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedwomen"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/UNSDG"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "UNSDGs - Gender equality"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://sdgs.un.org/goals/goal5"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/genderequality",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedmen"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedwomen"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/RRI"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "RRI Pillars - Gender equality"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://rri-tools.eu/gender-equality"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/general",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - general"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/15/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/geographicallocation",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NAL"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "NAL - Geographical Locations"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://agclass.nal.usda.gov/mtwdk.exe?k=default&l=60&s=1&n=1&y=0&w=Geographical%20Locations&t=3"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/geography",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - geography"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/16/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/governance",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/RRI"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "RRI Pillars - Governance"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://rri-tools.eu/governance"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/governmentexpenditure",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Eurostat"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/administration"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/business"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/economics"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/governmentregulation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/institutional"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/EcotourismSupport"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2017"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Government expenditure by function"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/governmentregulation",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/freedomindex"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/governmentexpenditure"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NAL"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "NAL - Government, Law and Regulations"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://agclass.nal.usda.gov/mtwdk.exe?k=default&l=60&s=1&n=1&y=0&w=Government%2C%20Law%20and%20Regulations&t=3"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/greenhousegasemmision",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Eurostat"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/air"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/climate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/natural"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/naturalresources"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/pollution"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/EcotourismSupport"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/NewHouse"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2017"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Greenhouse gases emmisions"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/hasCoverage",
-  "@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty", "http://www.w3.org/2002/07/owl#ObjectProperty" ],
-  "http://www.w3.org/2000/01/rdf-schema#domain" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Dataset"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#range" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Coverage"
-  } ],
-  "http://www.w3.org/2002/07/owl#inverseOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/isCoverageOf"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/hasDataset",
-  "@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty", "http://www.w3.org/2002/07/owl#ObjectProperty" ],
-  "http://www.w3.org/2000/01/rdf-schema#domain" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Group"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#range" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Dataset"
-  } ],
-  "http://www.w3.org/2002/07/owl#inverseOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/isDatasetOf"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/hasLoD",
-  "@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty", "http://www.w3.org/2002/07/owl#ObjectProperty" ],
-  "http://www.w3.org/2000/01/rdf-schema#domain" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Dataset"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#range" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LevelOfDetail"
-  } ],
-  "http://www.w3.org/2002/07/owl#inverseOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/isLoDOf"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/hasSource",
-  "@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty", "http://www.w3.org/2002/07/owl#ObjectProperty" ],
-  "http://www.w3.org/2000/01/rdf-schema#domain" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Dataset"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#range" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Source"
-  } ],
-  "http://www.w3.org/2002/07/owl#inverseOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/isSourceOf"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/hdi",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/institutional"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2017"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "HDI"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/healthpathology",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GPoffices"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/dentists"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/hospitals"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/paediatricianoffices"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/pharmacies"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/projectedoldagepopulation"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NAL"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "NAL - Health and Pathology"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://agclass.nal.usda.gov/mtwdk.exe?k=default&l=60&s=1&n=1&y=0&w=Health%20and%20Pathology&t=3"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/highschools",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/qualityeducation"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2018"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Number of High Schools in the Municipality"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/highways",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/sustainablecities"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/transport"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationOfHotel"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationOfWarehouse"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/NewHouse"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.arcdata.cz/produkty/geograficka-data/arccr-500"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2020"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Number of highways intersecting the municipality"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/hospitals",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/healthpathology"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/humanhealth"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/wellbeing"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2018"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Number of Hospitals  in the Municipality"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/householdwithgas",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/poverty"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2011"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of people living in household connected to gas piping"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/householdwithsewerage",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/cleanwater"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/responsibleconsumption"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/waste"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/MunicipalSewage"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2011"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of people living in household connected to sewerage system"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/householdwithwater",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/cleanwater"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/poverty"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/water"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/MunicipalSewage"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2011"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of people living in household connected to water piping"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/humanhealth",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GPoffices"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/dentists"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/hospitals"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/paediatricianoffices"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/pharmacies"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/projectedoldagepopulation"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - human health"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/17/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/immigrationrate",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/inequalities"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2019"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Difference between emigrants and immigrants per 1000 inhabitants throughout the year"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/industry",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - industry"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/19/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/inequalities",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/immigrationrate"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/UNSDG"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "UNSDGs - Reduced inequalities"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://sdgs.un.org/goals/goal10"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/information",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - information"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/20/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/innovation",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/primarysector"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/UNSDG"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "UNSDGs - Industry, innovation and infrastructure"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://sdgs.un.org/goals/goal9"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/institutional",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/economyfreedomindex"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/freedomindex"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/governmentexpenditure"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/hdi"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Polirural"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Polirural - Institutional"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/isCoverageOf",
-  "@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty", "http://www.w3.org/2002/07/owl#ObjectProperty" ],
-  "http://www.w3.org/2000/01/rdf-schema#domain" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Coverage"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#range" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Dataset"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/isDatasetOf",
-  "@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty", "http://www.w3.org/2002/07/owl#ObjectProperty" ],
-  "http://www.w3.org/2000/01/rdf-schema#domain" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Dataset"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#range" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Group"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/isLoDOf",
-  "@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty", "http://www.w3.org/2002/07/owl#ObjectProperty" ],
-  "http://www.w3.org/2000/01/rdf-schema#domain" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LevelOfDetail"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#range" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Dataset"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/isPartOf",
-  "@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty", "http://www.w3.org/2002/07/owl#ObjectProperty" ],
-  "http://www.w3.org/2000/01/rdf-schema#domain" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Group"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#range" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/ClassificationSchema"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/isProblemOf",
-  "@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty", "http://www.w3.org/2002/07/owl#ObjectProperty" ],
-  "http://www.w3.org/2000/01/rdf-schema#domain" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Problem"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#range" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Role"
-  } ],
-  "http://www.w3.org/2002/07/owl#inverseOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/solvesProblem"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf",
-  "@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty", "http://www.w3.org/2002/07/owl#ObjectProperty" ],
-  "http://www.w3.org/2000/01/rdf-schema#domain" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Dataset"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#range" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Problem"
-  } ],
-  "http://www.w3.org/2002/07/owl#inverseOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/requiresDataset"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/isSourceOf",
-  "@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty", "http://www.w3.org/2002/07/owl#ObjectProperty" ],
-  "http://www.w3.org/2000/01/rdf-schema#domain" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Source"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#range" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Dataset"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/legislation",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - legislation"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/21/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/lifebelowwater",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/UNSDG"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "UNSDGs - Life below water"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://sdgs.un.org/goals/goal14"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/lifeonland",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/ecologicallystableareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/forestarea"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/UNSDG"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "UNSDGs - Life on land"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://sdgs.un.org/goals/goal15"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/link",
-  "@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty" ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/lowinputfarms",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Eurostat"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/agriculture"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/economic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/environmentalpolicy"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/farmingsystem"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationFarm"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2016"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Low input farms"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/marriagerate",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Eurostat"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/social"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/socialaspects"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2017"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Marriage rate"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/materials",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - materials"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/27/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/military",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - military aspects"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/22/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/municipality",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/LevelOfDetail" ],
-  "http://www.semanticweb.org/attractiveness/isLoDOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GPoffices"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/agriculturearea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/airportdistance"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/birthrate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/builtuparea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/deathrate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/dentists"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/ecologicallystableareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/fastroads"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/forestarea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/highschools"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/highways"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/hospitals"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithgas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithsewerage"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithwater"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/immigrationrate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/newbuilthouses"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/paediatricianoffices"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/pharmacies"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/primaryeducation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/primarysector"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/socialassistence"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/trainstation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployeddisabled"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedmen"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedpopulation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedwomen"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemployedyouth"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/universityeducation"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/natural",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/fertilizers"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/greenhousegasemmision"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/nitrogensurplus"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/pesticidessale"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/phosphorussurplus"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Polirural"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Polirural - Natural"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/naturalareas",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/protectedareas"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - natural areas, landscape, ecosystems"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/23/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/naturaldynamics",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - natural dynamics"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/8/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/naturalresources",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/ecologicallystableareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/greenhousegasemmision"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/nitrogensurplus"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/phosphorussurplus"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/protectedareas"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NAL"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "NAL - Natural Resources, Earth and Environment"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://agclass.nal.usda.gov/mtwdk.exe?k=default&l=60&s=1&n=1&y=0&w=Natural%20Resources%2C%20Earth%20and%20Environmental%20Sciences&t=3"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/newbuilthouses",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/building"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/poverty"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/sustainablecities"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/MunicipalSewage"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/NewHouse"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.arcdata.cz/produkty/geograficka-data/arccr-500"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2020"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Number of New-build Households in the Municipality"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/nitrogensurplus",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Eurostat"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/agriculture"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/environmentalpolicy"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/natural"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/naturalresources"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/pollution"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/soil"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationFarm"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2015"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Nitrogen surplus in soils"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/noise",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - noise, vibrations"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/24/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/nutrition",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NAL"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "NAL - Food and Human Nutrition"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://agclass.nal.usda.gov/mtwdk.exe?k=default&l=60&s=1&n=1&y=0&w=Food%20and%20Human%20Nutrition&t=3"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/openaccess",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/RRI"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "RRI Pillars - Open access"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://rri-tools.eu/open-access"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/paediatricianoffices",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/healthpathology"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/humanhealth"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/wellbeing"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NewHouse"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2018"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Number of Paediatrician Offices in the Municipality"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/partnership",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/UNSDG"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "UNSDGs - Partnership for the goals"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://sdgs.un.org/goals/goal17"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/peace",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/UNSDG"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "UNSDGs - Peace, justice and strong institutions"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://sdgs.un.org/goals/goal16"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/pesticidessale",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Eurostat"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/agriculture"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/environmentalpolicy"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/farmingsystem"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/natural"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationFarm"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2017"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Pesticides sales per area"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/pharmacies",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/healthpathology"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/humanhealth"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/wellbeing"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NewHouse"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2018"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Number of Pharmacies in the Municipality"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/phosphorussurplus",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Eurostat"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/agriculture"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/environmentalpolicy"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/natural"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/naturalresources"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/pollution"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/soil"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationFarm"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2015"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Phosphorus surplus in soils"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/physics",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - physics"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/25/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/plantscience",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NAL"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "NAL - Plant Science and Plant Products"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://agclass.nal.usda.gov/mtwdk.exe?k=default&l=60&s=1&n=1&y=0&w=Plant%20Science%20and%20Plant%20Products&t=3"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/pollution",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/greenhousegasemmision"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/nitrogensurplus"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/phosphorussurplus"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - pollution"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/26/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/poverty",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithgas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithwater"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/newbuilthouses"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/socialassistence"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/UNSDG"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "UNSDGs - No poverty"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://sdgs.un.org/goals/goal1"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/primaryeducation",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/qualityeducation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/socialaspects"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2011"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of people with primary education only including not-graduated people"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/primarysector",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/agriculture"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/zerohunger"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationFarm"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2011"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of people working in primary sector"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/projectedoldagepopulation",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Eurostat"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/healthpathology"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/humanhealth"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/social"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/socialaspects"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2018"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Projected old-age population in 2030"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/protectedareas",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/WorldBank"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/anthropic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/environmentalpolicy"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/naturalareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/naturalresources"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/EcotourismSupport"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationOfHotel"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/NewHouse"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/TripDestination"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2018"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Protected areas"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/publicengagement",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/RRI"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "RRI Pillars - Public engagement"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://rri-tools.eu/public-engagement"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/qualityeducation",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/highschools"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/primaryeducation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/universityeducation"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/UNSDG"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "UNSDGs - Quality education"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://sdgs.un.org/goals/goal4"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/radiation",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - radiations"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/28/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/renewableenergy",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/WorldBank"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/anthropic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/energy"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/environmentalpolicy"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2015"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Renewable electricity output"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/requiresDataset",
-  "@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty", "http://www.w3.org/2002/07/owl#ObjectProperty" ],
-  "http://www.w3.org/2000/01/rdf-schema#domain" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Problem"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#range" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Dataset"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/research",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - research"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/30/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/resources",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - resources"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/31/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/responsibleconsumption",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithsewerage"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/UNSDG"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "UNSDGs - Responsible consumption and production"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://sdgs.un.org/goals/goal12"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/ruralsociology",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NAL"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "NAL - Rural and Agricultural Sociology"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://agclass.nal.usda.gov/mtwdk.exe?k=default&l=60&s=1&n=1&y=0&w=Rural%20and%20Agricultural%20Sociology&t=3"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/satisfaction1",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Eurostat"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/anthropic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NewHouse"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2013"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Satisfaction1"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/satisfaction2",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Eurostat"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/anthropic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/socialaspects"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NewHouse"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2011"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Satisfaction2"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/science",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NAL"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "NAL - Physical and Chemical Sciences"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://agclass.nal.usda.gov/mtwdk.exe?k=default&l=60&s=1&n=1&y=0&w=Physical%20and%20Chemical%20Sciences&t=3"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/secondarysector",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/innovation"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2011"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of people working in secondary sector"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/smallfarms",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Eurostat"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/agriculture"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/economic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/farmingsystem"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/EcotourismSupport"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationFarm"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2016"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Small farms"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/social",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/marriagerate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/projectedoldagepopulation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/satisfaction1"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/satisfaction2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/unemploymentrate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/youngpopulation"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/socialaspects"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Polirural"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "Polirural - Social"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/socialaspects",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/birthrate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/deathrate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/marriagerate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/primaryeducation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/projectedoldagepopulation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/satisfaction1"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/satisfaction2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/socialassistence"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/universityeducation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/youngpopulation"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - social aspects, population"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/34/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/socialassistence",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/poverty"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/socialaspects"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/SupportForDisabled"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2018"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Number of Social Assistence Offices in the Municipality"
-  }, {
-    "@language" : "cs",
-    "@value" : "Počet sociálních a asistenčních služeb v obci"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/soil",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/nitrogensurplus"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/phosphorussurplus"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - soil"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/35/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/solvesProblem",
-  "@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty", "http://www.w3.org/2002/07/owl#ObjectProperty" ],
-  "http://www.w3.org/2000/01/rdf-schema#domain" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Role"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#range" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Problem"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/space",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - space"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/36/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/sustainablecities",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/airportdistance"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/builtuparea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/fastroads"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/highways"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/newbuilthouses"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/trainstation"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/UNSDG"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "UNSDGs - Sustainable cities and communities"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://sdgs.un.org/goals/goal11"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/taxonomicclassification",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NAL"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "NAL - Taxonomic Classification of Organisms "
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/technologyengineering",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NAL"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "NAL - Research, Technology and Engineering"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://agclass.nal.usda.gov/mtwdk.exe?k=default&l=60&s=1&n=1&y=0&w=Research%2C%20Technology%20and%20Engineering&t=3"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/tourism",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - tourism"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/29/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/trade",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - trade, services"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/33/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/trainstation",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/sustainablecities"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/transport"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/TripDestination"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.arcdata.cz/produkty/geograficka-data/arccr-500"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2020"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Number of train stations in the municipality"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/transport",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/airportdistance"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/fastroads"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/highways"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/trainstation"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - transport"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/37/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/unemployeddisabled",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/decentwork"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/SupportForDisabled"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2019"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of Unemployed Dissabled People in All Registered Unemployed"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/unemployedmen",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/economics"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/gender"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/genderequality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2019"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "The ratio of unemployed men"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/unemployedpopulation",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/decentwork"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/economics"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2020"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "The ratio of unemployed population"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/unemployedwomen",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/economics"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/gender"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/genderequality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2019"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "The ratio of unemployed women"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/unemployedyouth",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/decentwork"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2019"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of Unemployed Youth in All Registered Unemployed"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/unemploymentrate",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Eurostat"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/social"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LocationOfWarehouse"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2018"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Unemployment rate"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/universityeducation",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/LAU2"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/municipality"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechStatisticalOffice"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/qualityeducation"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/socialaspects"
-  } ],
-  "http://www.semanticweb.org/attractiveness/link" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#anyURI",
-    "@value" : "https://www.czso.cz/csu/czso/regiony_mesta_obce_souhrn"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2011"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Proportion of people with university education"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/update",
-  "@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty" ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/urbanenvironment",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/artificialland"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/builtuparea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/ecologicallystableareas"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/forestarea"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - urban environment, urban stress"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/38/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/waste",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithsewerage"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - waste"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/39/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/water",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/householdwithwater"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GEMET"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "GEMET - water"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://www.eionet.europa.eu/gemet/en/theme/40/concepts/"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/wellbeing",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/GPoffices"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/birthrate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/deathrate"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/dentists"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/hospitals"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/paediatricianoffices"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/pharmacies"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/UNSDG"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "UNSDGs - Good health and well-being"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://sdgs.un.org/goals/goal3"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/youngpopulation",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Dataset" ],
-  "http://www.semanticweb.org/attractiveness/hasCoverage" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/CzechRepublic"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/Europe"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasLoD" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NUTS3"
-  } ],
-  "http://www.semanticweb.org/attractiveness/hasSource" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/Eurostat"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/social"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/socialaspects"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isRequiredDatasetOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/NewHouse"
-  } ],
-  "http://www.semanticweb.org/attractiveness/update" : [ {
-    "@type" : "http://www.w3.org/2001/XMLSchema#date",
-    "@value" : "2018"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@language" : "en",
-    "@value" : "Young in population"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/attractiveness/zerohunger",
-  "@type" : [ "http://www.w3.org/2002/07/owl#NamedIndividual", "http://www.semanticweb.org/attractiveness/Group" ],
-  "http://www.semanticweb.org/attractiveness/hasDataset" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/agriculturearea"
-  }, {
-    "@id" : "http://www.semanticweb.org/attractiveness/primarysector"
-  } ],
-  "http://www.semanticweb.org/attractiveness/isPartOf" : [ {
-    "@id" : "http://www.semanticweb.org/attractiveness/UNSDG"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#label" : [ {
-    "@value" : "UNSDGs - Zero hunger"
-  } ],
-  "http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
-    "@value" : "https://sdgs.un.org/goals/goal2"
-  } ]
-}, {
-  "@id" : "http://www.semanticweb.org/otakar/ontologies/2021/7/untitled-ontology-10#x",
-  "@type" : [ "http://www.w3.org/2003/11/swrl#Variable" ]
-}, {
-  "@id" : "http://www.w3.org/2001/XMLSchema#date",
-  "@type" : [ "http://www.w3.org/2000/01/rdf-schema#Datatype" ]
-} ]