-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Parse ESRI/ArcInfo (ArcGrid) raster GIS files -- -- A parser for ESRI/ArcInfo (ArcGrid) files. These are raster GIS files -- widely used by many geographics-related software to represent -- elevations or terrain features. @package arcgrid @version 0.1.0.0 -- | ESRI/ArcInfo ASCII Grid file format module ArcGrid data ArcGrid ncols :: ArcGrid -> Int nrows :: ArcGrid -> Int xllcorner :: ArcGrid -> Maybe Float yllcorner :: ArcGrid -> Maybe Float xllcenter :: ArcGrid -> Maybe Float yllcenter :: ArcGrid -> Maybe Float cellsize :: ArcGrid -> Float nodata_value :: ArcGrid -> Maybe Int vat :: ArcGrid -> [Int] arcGridFromFile :: String -> IO ArcGrid -- | The parser asciiGridParser :: Parser ArcGrid instance GHC.Show.Show ArcGrid.ArcGrid