-
Notifications
You must be signed in to change notification settings - Fork 35
conversion:DataStartRow
timrdf edited this page Apr 9, 2011
·
18 revisions
See conversion:HeaderRow.
7 is the first row with data.
conversion:enhance [
ov:csvRow 7;
a conversion:DataStartRow;
];
See also conversion:DataEndRow.
Which datasets have headers at positions other than at row 1 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;
]
]
}
}