Template:PropertyMapping: Difference between revisions

From DBpedia Mappings
Jump to navigationJump to search
No edit summary
(Updated to include prefix, suffix and transform)
Line 16: Line 16:
</tr>
</tr>
| #default = <tr><td>select</td><td><span style="color:red">please use either 'first' or 'last'</span></td></tr>
| #default = <tr><td>select</td><td><span style="color:red">please use either 'first' or 'last'</span></td></tr>
}}}}
{{#if:{{{prefix|}}} |
<tr>
  <td>prefix</td><td>{{{prefix}}}</td>
</tr>
}}
}}
{{#if:{{{suffix|}}} |
<tr>
  <td>suffix</td><td>{{{suffix}}}</td>
</tr>
}}
}}
{{#if:{{{transform|}}} | {{#switch: {{{transform}}}
| internal = <tr>
<td>transform</td><td>{{{transform}}}</td>
</tr>
| external = <tr>
<td>transform</td><td>{{{transform}}}</td>
</tr>
| #default = <tr><td>transform</td><td><span style="color:red">please use either 'internal' or 'external'</span></td></tr>
}} }}
{{#if:{{{unit|}}}|<tr>
{{#if:{{{unit|}}}|<tr>
<td>unit</td><td>[[Datatype:{{{unit}}}|{{{unit}}}]]</td>
<td>unit</td><td>[[Datatype:{{{unit}}}|{{{unit}}}]]</td>

Revision as of 01:01, 16 July 2014

{{PropertyMapping}} maps template properties to ontology properties.

Usage

{{PropertyMapping 
| templateProperty =
| ontologyProperty =
| select =
| unit =
| factor =
| language =
| comment =
}}

Meanings

  • templateProperty: A template property to ontology property mapping should list one template property which is to be mapped.
  • ontologyProperty: A template property to ontology property mapping should list one ontology property.
  • select: A selector used to map only one value from the list defined by the template property. Currently only 'first' and 'last' are admitted.
  • unit: If a template property containing a numerical value and a unit is mapped, the unit has to be defined (Please use only values from DBpedia unit and dimensions). If a template property has no default unit defined, e.g. its values can contain different units of the same dimension, the dimension has to be defined for usability as well as validation reasons. Possible dimensions are Length or Mass.
  • factor: Multiplication factor that is applied for numeric data.
  • language: if the datatype is of rdf:langString we can define the language of the language tag using the wikipedia language code (e.g. language = de)
  • comment: Comment about this mapping. Not used during extraction, only on the wiki. Please use English.

Example

The property mapping from the template property birth_date to the ontology property birthDate:

{{PropertyMapping 
| templateProperty = birth_date 
| ontologyProperty = birthDate 
}}

The property mapping for the number of visitors which is specified in millions:

{{PropertyMapping 
| templateProperty = visitors_mio
| ontologyProperty = visitors
| factor = 1000000
}}

The property mapping for the first value of the spouses template property:

{{PropertyMapping 
| templateProperty = spouses
| ontologyProperty = firstSpouse
| select = first
}}

The property mapping for a french title property:

{{PropertyMapping 
| templateProperty = french_title
| ontologyProperty = title
| language = fr
}}