If you are a coder/developer there are some utilities you might find useful.
SLGACloud
SLGACloud is a package for the "R" programming language that allows you to easily acess metadata information about the various SLGA data products.
The package is available on GitHub - https://github.com/AusSoilsDSM/SLGACloud
To install the package in R
library(devtools)
install_github("AusSoilsDSM/SLGACloud")
when it is installed you can take a quick preview of the functionality using
codeDemo()
codeDemoCOGs()
SLGA Raster Products Web API
This API allows you to access metadata information about the SLGA raster products and drill pixels of SLGA raster products at a specific location to return values.
The swagger documentation for the web API is located at - https://esoil.io/TERNLandscapes/RasterProductsAPI/__docs__/
Examples
List the availble query parameters - https://esoil.io/TERNLandscapes/RasterProductsAPI/QueryParameterValues?format=json¶meter=Attribute
Filter products and show metadata information - https://esoil.io/TERNLandscapes/RasterProductsAPI/ProductInfo?format=json&attribute=Clay
Get a raster pixel value at a specific location - https://esoil.io/TERNLandscapes/RasterProductsAPI/Drill?format=json&verbose=false&COGPath=https://esoil.io/TERNLandscapes/Public/Products/TERN/SLGA/30m/SOC/SOC_030_060_05_N_P_AU_TRN_N_20220727_30m.tif&latitude=-27&longitude=150
R Package
Lauren O'Brien has written an R package "slga" that allows R users to easily access and extract the SLGA raster datasets. The "slga" package offers the ability to download geographic subsets of raster data from the Soil and Landscape Grid of Australia.
The package can be downloaded from https://obrl-soil.github.io/slga/. Follow the instructions in the Readme for installation details.