From 14de18c5074f160d8dc831879a29c03056685b04 Mon Sep 17 00:00:00 2001 From: einarr Date: Sat, 28 Feb 2009 15:38:29 +0000 Subject: [PATCH] IMPORTANT: identifiers in the resulting csv file were not correct before this patch. --- bin/ftsv2csv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/ftsv2csv b/bin/ftsv2csv index 6ffc6d7..b213f14 100755 --- a/bin/ftsv2csv +++ b/bin/ftsv2csv @@ -16,8 +16,8 @@ def read_options(): def write_csv(fd, ds): rowdim, coldim = ds.get_dim_name() - rowids = ds.get_identifiers(rowdim) - colids = ds.get_identifiers(coldim) + rowids = ds.get_identifiers(rowdim, sorted=True) + colids = ds.get_identifiers(coldim, sorted=True) x = ds.asarray() ## Print ID row