Creates an ASCII raster with proximity to polygons for 100m2 grid cells.
A single GeoPackage (.gpkg) or Shapefile (.shp) containing polygons is required.
gdal_rasterize is used to burn the value 1 into a 100m resolution raster.
gdal_proximity then generates the distance-to-feature map.
'gdal_translate' converts to an ascii raster suitable for input to UDM.
docker build -t <name of image> . && docker run -v "<full local path>:/data" <any parameters which need passing> --name <name of container> <name of image>
docker build -t udm-rasterise-proximity . && docker run -v "data:/data" --name udm-rasterise-proximity udm-rasterise-proximity
For 'use the following notation:--env =`
To see the list of possible parameters, see the model definition file (.yml) in the base directory of the repository.