landlab.grid.unstructured.status

class StatusGrid[source]

Bases: object

__init__(node_status)[source]
__new__(**kwargs)
active_nodes()[source]

Node IDs of all active (core & open boundary) nodes.

core_nodes will return just core nodes.

boundary_nodes()[source]

Node IDs of all boundary nodes.

closed_boundary_nodes()[source]

Node id of all closed boundary nodes.

core_nodes()[source]

Node IDs of all core nodes.

fixed_gradient_boundary_nodes()[source]

Node id of all fixed gradient boundary nodes.

fixed_value_boundary_nodes()[source]

Node id of all fixed value boundary nodes.

property node_status

Status of nodes.

Return an array of the status of a grid’s nodes. The node status can be one of the following: - NodeStatus.CORE - NodeStatus.FIXED_VALUE - NodeStatus.FIXED_GRADIENT - NodeStatus.LOOPED - NodeStatus.CLOSED

open_boundary_nodes()[source]

Node id of all open boundary nodes.