Changes between Version 38 and Version 39 of rdfstore
- Timestamp:
- 10/29/12 04:24:36 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
rdfstore
v38 v39 32 32 33 33 === Links === 34 * '''Introduction to RDF''': http://www.rdfabout.com/quickintro.xpd 34 * '''RDF at Wikipedia''': http://en.wikipedia.org/wiki/Resource_Description_Framework 35 * '''RDF/XML W3C Document''': http://www.w3.org/TR/rdf-syntax-grammar/ 35 36 * '''Mappings from ISO metadata standards to RDF''': http://def.seegrid.csiro.au/isotc211/iso19115/2003/ (mapping from ISO19115 to RDF), http://def.seegrid.csiro.au/isotc211/iso19119/2005/ (mapping from ISO19119 to RDF) 36 * '''GIT Repository ''': https://github.com/cipherj/core-geonetwork.git (rdf-store branch)37 * '''GIT Repository of GeoNetwork Branch developed by UWA Developers''': https://github.com/cipherj/core-geonetwork.git (rdf-store branch) 37 38 * '''Apache JENA''': http://jena.apache.org/ (rdf triple store used in UWA patch) 38 39 * '''Geospatial reasoning for Apache JENA''': http://code.google.com/p/geospatialweb/ … … 49 50 === RDF, RDFS and OWL === 50 51 51 RDF (Resource Description Framework) is a general method to decompose knowledge into simple facts consisting of entity-attribute-value (a triple known as subject-predicate-object in RDF terms). As an example in the metadata context, an RDF triple from a metadata record could be dataset-title-'A Series of 1:25,000 Vegetation Maps For Tasmania'. 52 RDF (Resource Description Framework) is a general method to decompose knowledge into simple facts consisting of entity-attribute-value (a triple known as subject-predicate-object in RDF terms). As an example in the metadata context, an RDF triple representing a fact from a metadata record could be: 53 54 {{{ 55 dataset-title-'A Series of 1:25,000 Vegetation Maps For Tasmania' 56 }}} 57 58 RDF has an XML implementation 52 59 53 60 RDFS (or RDF Schema) adds a class structure to RDF triples.