Hello,
not a real bug in beacon yet I think it's worth mentioning: after running seadatanet.ipynb I tried to write the output to a netCDF file, using:
dfa = df.to_xarray()
dfa.to_netcdf("myfile_SDN.nc")
which doesn't work because of this error:
RuntimeError: NetCDF: Name contains illegal characters
Some variables cannot be written to netCDF, for instance those with a name starting with a . (e.g., .csr_platform_code, .instrument___gear_type, ...), so a solution is to rename those variables before writing to the netCDF.
Hello,
not a real bug in
beaconyet I think it's worth mentioning: after running seadatanet.ipynb I tried to write the output to a netCDF file, using:which doesn't work because of this error:
Some variables cannot be written to netCDF, for instance those with a name starting with a
.(e.g.,.csr_platform_code,.instrument___gear_type, ...), so a solution is to rename those variables before writing to the netCDF.