Skip to content

JuliaGeo/ASCIIrasters.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.