Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 871 Bytes

README.md

File metadata and controls

12 lines (7 loc) · 871 Bytes

ASCIIrasters.jl

Build Status Coverage

Simple read and write functions for ASCII raster files. The ASCII format convention used is AAIGrid (the QGIS default for ASCII rasters).

Exported functions

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.