I would suggest you to move all the datasets to other more structured file format (NetCDF for example) instead of having csv, npz, etc.
Meanwhile, for the data that you currently have, two recommendations:
- I think is better to compress file by file directly (store
NW2016.csv.gz directly instead of taring NW_ground_stations_2016.tar.gz). That would allow users to work directly with compressed data (with tools like zcat) and download only what they need (multiple files case).
- Use xz instead of gzip to reduce the current space. The NW2016.csv file with level 9 have a final size of 98MB, for example
I would suggest you to move all the datasets to other more structured file format (NetCDF for example) instead of having csv, npz, etc.
Meanwhile, for the data that you currently have, two recommendations:
NW2016.csv.gzdirectly instead of taringNW_ground_stations_2016.tar.gz). That would allow users to work directly with compressed data (with tools like zcat) and download only what they need (multiple files case).