# Manipulating AGLS CF-netCDF with GDAL Comamnd Line Interface
The GDAL command line utilities may be to resize the netCDF data, reproject the netCDF data or convert to a different format (GeoTIFF, JPEG, PNG) for use with other software applications (such as GIS tools):
Environment
Note that some versions of the GDAL module will require the Proj4 module to be loaded (module load proj).
Many other applications require simple projections (e.g. cylindrical equidistant). Note that the extent and resolution need to be specified in the output projection coordinates. In the case of "+proj=latlong", this is degrees. For most other projections, the coordinates are in "m" and must be specified accordingly.
```
# warp to a simple lat/lon projection with 0.01 degree resolution, use cubic interpolation.
# store the data as compressed (deflate/zlib) 32-bit floats
# resulting tif can be viewed in GIS tools
gdalwarp -overwrite -r cubic \
-t_srs '+proj=latlong +a=6378137 +b=6356752' \
-te 108 -44 156 -8 -tr 0.01 0.01 \
$gdal_file_name map_float32.tif \
-co "COMPRESS=DEFLATE" -co "TILED=YES"
```
## Export for GIS
Convert the netCDF to GeoTIFF for display in GIS systems. Resulting tif can be viewed in GIS tools
Create image pyramids within the output image. Image pyramids are low resolution copies or overviews of the data. Overviews may be used by visualisation tools when the image is "zoomed out".
Convert our map GeoTIFF for display in GIS systems. Resulting tif can be viewed in GIS tools. Here the scale keywork is used to map 0-1 in data space to 0-100 in map space (so that data can be stored as a byte, but remain interperable). We can use lossy JPEG compression for uint8 data type.
Convert 32-bit float to an image (8-bit uint) scaled from 0 to 1 (output as 0-255). The resulting tif can be viewed in GIS tools, but also within most image viewers. Lossy JPEG compression can significantly reduce the file size.