Skip to content

Commit

Permalink
Update ARGOS_service_data_converter.py
Browse files Browse the repository at this point in the history
  • Loading branch information
shaunwbell committed Dec 10, 2024
1 parent ae13c18 commit c9d8325
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ARGOS_service_data_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,10 +466,10 @@ def pandas2netcdf(df=None, ofile="data.nc",isxa=True):
xdf = df.rename(columns={'year_doy_hhmm':'time'}).to_xarray()

try:
df['checksum'] = df['checksum'].astype(bool)
df['checksum'] = df['checksum'].astype("bool")
except:
pass

#rename variables and add attributes
drop_missing = True

Expand Down

0 comments on commit c9d8325

Please sign in to comment.