Gridded data are available for a range of variables in NetCDF and GeoTiff formats. The NetCDF datasets are arranged in annual blocks where each file contains all of the grids for the selected year and variable. The GeoTiff datasets are not arranged in blocks; each file contains a single grid for the selected day (or month in the case of monthly rainfall) and variable.
Please note SILO also provides point datasets. Temporal (point) data at individual grid locations can be downloaded using our web interface or web API.
SILO's gridded datasets are hosted on Amazon Web Services under the AWS Public Data Program.
Each annual NetCDF file (for daily variables) is approximately 410 MB in size. The annual NetCDF files for monthly rainfall are smaller (14 MB) because they only contain 12 monthly grids, instead of 365 or 366 daily grids.
To ensure you obtain the most recent version of the selected dataset, please clear your browser cache before downloading.
Gridded data are available for:
The gridded data are stored on Amazon S3. The NetCDF data are arranged in a directory structure of the form annual/<variable>/<year>.<variable>.nc
where variable
is the variable's short name. Similarly, the GeoTiff data are arranged in a directory structure of the form daily/<variable>/<year>/<year><month><day>.<variable>.tif
(daily variables), and monthly/<variable>/<year>/<year><month>.<variable>.tif
(monthly variables). The datasets can be accessed by the following methods:
https://s3-ap-southeast-2.amazonaws.com/silo-open-data/Official/annual/index.html
aws s3 cp s3://silo-open-data/Official/annual/monthly_rain/2005.monthly_rain.nc .
aws s3 sync s3://silo-open-data/Official/annual/monthly_rain/ .
aws s3 cp s3://silo-open-data/Official/daily/max_temp/2018/20180103.max_temp.tif .
https://s3-ap-southeast-2.amazonaws.com/silo-open-data/Official/annual/<variable>/<year>.<variable>.nc
curl
as follows:curl "https://s3-ap-southeast-2.amazonaws.com/silo-open-data/Official/annual/evap_pan/2015.evap_pan.nc" --remote-name
Use the tools and examples provided below to get started.
The example shows how to import a NetCDF dataset and analyse.
Read moreThe example shows how NCO tools can be used to process NetCDF datasets.
Read moreThe example shows how NetCDF files can be converted to other formats.
Read more