-
Notifications
You must be signed in to change notification settings - Fork 47
Open
Description
As per the TODO in line 94:
geozero/geozero/src/csv/csv_writer.rs
Lines 92 to 101 in 970aa4f
impl<W: Write> PropertyProcessor for CsvWriter<W> { | |
fn property(&mut self, i: usize, colname: &str, colval: &ColumnValue) -> Result<bool> { | |
// TODO: support mis-ordered properties? | |
if self.has_written_first_record { | |
assert_eq!( | |
colname, | |
&self.headers[i + 1], | |
"CSV features must all have the same column names" | |
); | |
} else { |
Metadata
Metadata
Assignees
Labels
No labels