Projects/laydi
Projects
/
laydi
Archived
7
0
Fork 0

IMPORTANT: identifiers in the resulting csv file were not correct before this patch.

This commit is contained in:
Einar Ryeng 2009-02-28 15:38:29 +00:00
parent 53cbd8fed7
commit 14de18c507
1 changed files with 2 additions and 2 deletions

View File

@ -16,8 +16,8 @@ def read_options():
def write_csv(fd, ds): def write_csv(fd, ds):
rowdim, coldim = ds.get_dim_name() rowdim, coldim = ds.get_dim_name()
rowids = ds.get_identifiers(rowdim) rowids = ds.get_identifiers(rowdim, sorted=True)
colids = ds.get_identifiers(coldim) colids = ds.get_identifiers(coldim, sorted=True)
x = ds.asarray() x = ds.asarray()
## Print ID row ## Print ID row