Loading py/cso_scihub.py +4 −1 Original line number Diff line number Diff line Loading @@ -4,6 +4,9 @@ # 2022-09, Arjo Segers # Updated documentation. # # 2023-06, Arjo Segers # Use "pandas.concat()" instead of "df.append()" to avoid warnings. # ######################################################################## ### Loading Loading @@ -502,7 +505,7 @@ class CSO_SciHub_Inquire( utopya.UtopyaRc ) : 'filename' : [filename], 'href' : [href] } # add record: output_df = output_df.append( pandas.DataFrame(rec), ignore_index=True ) output_df = pandas.concat( (output_df,pandas.DataFrame(rec)), ignore_index=True ) #endfor # entries Loading Loading
py/cso_scihub.py +4 −1 Original line number Diff line number Diff line Loading @@ -4,6 +4,9 @@ # 2022-09, Arjo Segers # Updated documentation. # # 2023-06, Arjo Segers # Use "pandas.concat()" instead of "df.append()" to avoid warnings. # ######################################################################## ### Loading Loading @@ -502,7 +505,7 @@ class CSO_SciHub_Inquire( utopya.UtopyaRc ) : 'filename' : [filename], 'href' : [href] } # add record: output_df = output_df.append( pandas.DataFrame(rec), ignore_index=True ) output_df = pandas.concat( (output_df,pandas.DataFrame(rec)), ignore_index=True ) #endfor # entries Loading