-
Notifications
You must be signed in to change notification settings - Fork 36
conversion:DataStartRow
timrdf edited this page Apr 12, 2011
·
18 revisions
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.
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;
]
]
}
}