| 12345678910111213141516171819202122232425262728293031 |
- { "@context": {
- "created": { "@id": "http://purl.org/dc/terms/1.1/created", "@type": "http://www.w3.org/2001/XMLSchema#date" },
- "sfWithin": { "@id": "http://www.opengis.net/ont/geosparql#sfWithin", "@type": "@id" },
- "publisher": { "@id": "http://purl.org/dc/elements/1.1/publisher" },
- "asWKT": { "@id": "http://www.opengis.net/ont/geosparql#asWKT", "@type": "http://www.openlinksw.com/schemas/virtrdf#Geometry" },
- "source": { "@id": "http://purl.org/dc/elements/1.1/source", "@type": "@id" },
- "identifier": { "@id": "http://purl.org/dc/elements/1.1/identifier", "@type": "@id" },
- "homepage": { "@id": "http://xmlns.com/foaf/0.1/homepage", "@type": "@id" },
- "title": { "@id": "http://purl.org/dc/elements/1.1/title" },
- "label": { "@id": "http://www.w3.org/2000/01/rdf-schema#label" },
- "comment": { "@id": "http://www.w3.org/2000/01/rdf-schema#comment" },
- "rights": { "@id": "http://purl.org/dc/elements/1.1/rights", "@type": "@id" }
- },
- "@graph": [
- { "@id": "http://www.sdi4apps.eu/poi/#{{SOME_ID}}",
- "@type": [ "http://gis.zcu.cz/SPOI/Ontology#bestPracticesAtlasExample",
- "http://gis.zcu.cz/SPOI/Ontology#{{SOME_CATEGORY}}" ],
- "label": "{{SOME_NAME}}",
- "title": "{{SOME_NAME}}",
- "comment": {"@value": "{{SOME_DESCRIPTION}}", "@language": "en"},
- "homepage": "{{SOME_WEBPAGE}}",
- "sfWithin": [ "http://dbpedia.org/resource/{{SOME_DBPEDIA_ID}}",
- "http://www.geonames.org/{{SOME_GEONAMES_ID}}/",
- "https://www.wikidata.org/entity/{{SOME_WIKIDATA QID}}" ],
- "asWKT": "POINT({{SOME_LON}} {{SOME_LAT}})",
- "created": "{{SOME_YYY-MM-DD_DATE}}",
- "identifier": "http://www.sdi4apps.eu/poi/#{{SOME_ID}}",
- "publisher": "SPOI (http://sdi4apps.eu/spoi)",
- "rights": "http://opendatacommons.org/licenses/odbl/1.0/",
- "source": "https://atlasbestpractices.com"}
- ] }
|