cfdm.core.DomainAncillary.has_interior_ring¶
-
DomainAncillary.
has_interior_ring
()[source]¶ Whether or not there is an interior ring variable.
New in version (cfdm): 1.8.0
- Returns
bool
True if there is an interior ring variable, otherwise False.
Examples
>>> c = cfdm.core.DomainAncillary() >>> i = cfdm.core.InteriorRing(data=cfdm.core.Data(numpy.arange(10).reshape(5, 2))) >>> c.set_interior_ring(i) >>> c.has_interior_ring() True >>> i = c.get_interior_ring() >>> i <InteriorRing: (5, 2) > >>> i.data <Data(5, 2): [[0, ..., 9]]> >>> i.data.shape (5, 2) >>> c.del_interior_ring() <InteriorRing: (5, 2) > >>> c.has_interior_ring() False >>> print(c.del_interior_ring(None)) None