Skip to content

Commit

Permalink
Update dump_bigquery_to_csv.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jbusecke authored May 31, 2024
1 parent a3dd0ab commit 6a8a26b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/dump_bigquery_to_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@
)

if len(bq_df) > 0:
print(bq_df.head())
print(df_all.head().columns)
print(df_all.head().instance_id.tolist())
print(df_all.head().store.tolist())

intake_esm_df = bq_df_to_intake_esm(bq_df)
intake_esm_df.to_csv(filename, index=False)
if fs.exists(path):
Expand Down

0 comments on commit 6a8a26b

Please sign in to comment.