Skip to content

conversion:DataStartRow

timrdf edited this page Jul 6, 2012 · 18 revisions
csv2rdf4lod-automation is licensed under the [Apache License, Version 2.0](https://github.com/timrdf/csv2rdf4lod-automation/wiki/License)

Structural conversion:Enhancements:


See conversion:HeaderRow.

7 is the first row with data.

   conversion:conversion_process [
      conversion:enhance [
         ov:csvRow 7;
         a conversion:DataStartRow;
      ];

See also conversion:DataEndRow.

Queries

Which datasets start data rows at positions other than immediately after the header (results):

PREFIX ov: <http://open.vocab.org/terms/>
prefix geonames:   <http://www.geonames.org/ontology#>
prefix conversion: <http://purl.org/twc/vocab/conversion/>

select distinct ?dataset ?row
where {
  graph <http://purl.org/twc/vocab/conversion/ConversionProcess> {
    ?dataset conversion:conversion_process [
      conversion:enhancement_identifier ?e;
      conversion:enhance [ 
        ov:csvRow ?row;
        a conversion:DataStartRow;
      ]
    ] 
  }
}
Clone this wiki locally