Find Landlab’s User Guide on the Landlab Wiki
A guide to Landlab’s classes and code.
As of Landlab version 0.2, there are four types of Landlab grid:
The base class is ModelGrid with subclasses RasterModelGrid and VoronoiDelaunayGrid.
VoronoiDelaunayGrid has two further specialized subclasses: HexModelGrid and RadialModelGrid.
Landlab’s rectilinear grids are implemented by the class RasterModelGrid, which inherits from ModelGrid and adds the following:
Landlab’s Voronoi-Delaunay grids are implemented by the class VoronoiDelaunayGrid, which inherits from ModelGrid and adds the following:
Landlab’s hex/trigonal grids are implemented by the class HexModelGrid, which inherits from VoronoiDelauneyGrid and adds the following:
Landlab’s radial grids are implemented by the class RadialModelGrid, which inherits from VoronoiDelauneyGrid and adds the following:
This section contains documentation and API reference information for the following categories of components:
This section documents various methods you can use to bring in data and write output to a file.
If you’re intending to make changes to the Landlab code base, or want to develop your own components, we recommend you follow these specialized developer install instructions.