Skip to content
Snippets Groups Projects
Commit 3be7e66e authored by David Schäfer's avatar David Schäfer
Browse files

exe: use the (optional) nodata argument as nodata-representation in

     the output dataset
parent d038224c
No related branches found
No related tags found
No related merge requests found
Pipeline #2827 passed with stage
in 8 minutes and 11 seconds
......@@ -59,7 +59,7 @@ def main(config, data, flagger, outfile, nodata, fail):
# flags_out.columns = flags_out.columns.map("_".join)
data_out = data_result.join(flags_out)
data_out.sort_index(axis="columns").to_csv(outfile, header=True, index=True, na_rep="")
data_out.sort_index(axis="columns").to_csv(outfile, header=True, index=True, na_rep=nodata)
if __name__ == "__main__":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment