IMPORTANT: identifiers in the resulting csv file were not correct before this patch.
This commit is contained in:
parent
53cbd8fed7
commit
14de18c507
|
@ -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
|
||||||
|
|
Reference in New Issue