pyinterp.geodetic.Polygon

Contents

pyinterp.geodetic.Polygon#

class pyinterp.geodetic.Polygon(outer: list[Point], inners: list[list[Point]] | None = None)[source]#

Bases: Polygon

Represent a polygon with an outer ring and optional inner rings.

Define a polygon containing one outer ring and zero or more inner rings (holes).

Parameters:
  • outer – outer ring.

  • inners – list of inner rings.

Raises:

Attributes

inners

The inner rings.

is_valid

Return whether the polygon is valid.

outer

The outer ring.

Inherited Methods

area(self[, wgs])

Calculates the area.

correct(self)

Correct a polygon.

covered_by(*args, **kwargs)

Overloaded function.

difference(self, other)

Computes the difference of this polygon with another.

distance(*args, **kwargs)

Overloaded function.

envelope(self)

Calculates the envelope of this polygon.

from_geojson(array)

Creates a polygon from a GeoJSON coordinates array.

intersection(*args, **kwargs)

Overloaded function.

intersects(self, other)

Check if this polygon intersects another.

num_interior_rings(self)

Return the number of interior rings.

perimeter(self[, wgs])

Compute the perimeter of this polygon.

read_wkt(wkt)

Parses OGC Well-Known Text (WKT) into a polygon.

simplify(self, tolerance)

Simplifies a polygon.

to_geojson(self)

Return the polygon as a GeoJSON type.

touches(self, other)

Check if this polygon touches another.

union(self, other)

Compute the union of this polygon with another.

wkt(self)

Get the OGC Well-Known Text (WKT) representation of this instance.