Initializes land data types and allocates boundary data.
mpp_domains_mod
fms_mod
subroutine land_types_init()
call land_types_init ()
subroutine allocate_boundary_data (a2l, bnd, domain, n_tiles) type(atmos_land_boundary_type), intent(inout) :: a2l type(land_data_type), intent(inout) :: bnd ! data to allocate type(domain2d), intent(in) :: domain ! domain to allocate for integer, intent(in) :: n_tiles ! number of tiles
call allocate_boundary_data (bnd, domain, n_tiles)
subroutine deallocate_boundary_data ( a2l, bnd ) type(atmos_land_boundary_type), intent(inout) :: a2l type(land_data_type), intent(inout) :: bnd ! data to deallocate
call deallocate_boundary_data ( bnd )