Simple read and write functions for ASCII raster files. The ASCII format convention used is AAIGrid (the QGIS default for ASCII rasters).
read_ascii(filename::AbstractString)
reads a file and returns its contained data and corresponding header information in a Tuple
.
write_ascii(filename, dat; kwargs...)
writes a file. Required keywords arguments are (see docs): ncols
, nrows
, xll
, yll
, dx
, dy
and nodatavalue
.