- 
                Notifications
    
You must be signed in to change notification settings  - Fork 36
 
conversion:range
        Timothy Lebo edited this page Feb 14, 2012 
        ·
        27 revisions
      
    
                csv2rdf4lod-automation is licensed under the [Apache License, Version 2.0](https://github.com/timrdf/csv2rdf4lod-automation/wiki/License)
              
          conversion:range rdfs:Resource (how many times used in LOGD?) will promote the cell value to a URI.
conversion:range rdfs:Literal will keep the cell value as a literal, but it can be typed with the following:
- 
xsd:decimal (how many times used in LOGD? (wgs as strings?)
 - 
xsd:double is NOT recognized because xsd:decimal is more general and is recommended best practice.
 - 
xsd:integer how many times used in LOGD?
 - 
xsd:dateTime how many times used in LOGD? (see also conversion:datetime_pattern)
 - 
xsd:date (how many times used in LOGD? within 7 dataset versions) (see also conversion:date_pattern)
- (please use conversion:equivalent_property or conversion:subproperty_of dcterms:date so more people can find and understand your new date value).
 
 - 
xsd:gYear (how many times used in LOGD? within 4 dataset versions)
 
    PREFIX rdfs:       <http://www.w3.org/2000/01/rdf-schema#>
    PREFIX xsd:        <http://www.w3.org/2001/XMLSchema#>
    PREFIX conversion: <http://purl.org/twc/vocab/conversion/>
    SELECT count(distinct ?enhancement) as ?count
    WHERE {
      GRAPH <http://purl.org/twc/vocab/conversion/ConversionProcess> {
        ?dataset a void:Dataset;
          conversion:conversion_process [
            conversion:enhance ?enhancement
          ]
        .
        ?enhancement conversion:range xsd:date .
      }
    }