TNO Intern

Commit 9337f691 authored by Arjo Segers's avatar Arjo Segers
Browse files

Sort inquiry table in-place.

parent 265fa596
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@
# 2024-04, Arjo Segers
#   Updated comment on default DataSpace OpenSearch ur.
#   Changed order of east/south in box selection.
#   Sort inquiry table by orbit number.
#   Sort inquiry table (in place) by orbit number.
#
# 2024-08, Arjo Segers
#   Changed number of attemps and delay based on latest experiences.
@@ -484,7 +484,7 @@ class CSO_DataSpace_Inquire(utopya.UtopyaRc):
            # endif
        # endif
        # sort the output_df by increasing orbit number
        output_df.sort_values(by="orbit")
        output_df.sort_values(by="orbit",inplace=True)
        # write:
        output_df.to_csv(output_file, sep=";", index=False)