This issue is motivated by the following: .nc is the file obtained by .to_netcdf(), .zip is zipping the .nc file in my file explorer:
$ ls -lrth dataset_trajectories_to_use.*
-rw-rw-r-- 1 jeanr jeanr 8,5M nov. 14 15:54 dataset_trajectories_to_use.zip
-rw-rw-r-- 1 jeanr jeanr 100M nov. 14 16:00 dataset_trajectories_to_use.nc
clearly the .nc I had was not effectively compressed at all...
Should this be discussed in some example, and / or should we provide a "reasonable zipping for our typical use / needs as encountered in trajan" .to_netcdf() wrapper, or do you think this is outside the scope of trajan?
I guess for example that in our case, that is trajectory-focused, it could be realistic to compress each variable trajectory independently, so that we get good compression factor, and at the same time accessing any variable for one single trajectory would still be fast (ie need only to read and uncompress the compressed chunk that contains only this variable for the corresponding trajectory).
This issue is motivated by the following: .nc is the file obtained by
.to_netcdf(), .zip is zipping the .nc file in my file explorer:clearly the .nc I had was not effectively compressed at all...
Should this be discussed in some example, and / or should we provide a "reasonable zipping for our typical use / needs as encountered in trajan"
.to_netcdf()wrapper, or do you think this is outside the scope of trajan?I guess for example that in our case, that is trajectory-focused, it could be realistic to compress each variable trajectory independently, so that we get good compression factor, and at the same time accessing any variable for one single trajectory would still be fast (ie need only to read and uncompress the compressed chunk that contains only this variable for the corresponding trajectory).