geovista.filters
#
Filters to analyse, transform and process geolocated meshes.
These filters leverage and build upon the rich, powerful ecosystem of the Visualization Toolkit (VTK).
Notes#
Added in version 0.1.0.
Module Contents#
Functions#
|
Slice mesh along meridian and triangulate any sliced cells. |
Attributes#
Marker for remesh filter eastern cell boundary point. |
|
|
|
|
|
|
- geovista.filters.remesh(mesh, meridian, boundary=False, check=False, rtol=None, atol=None)[source]#
Slice mesh along meridian and triangulate any sliced cells.
See the vtkIntersectionPolyDataFilter documentation for more.
- Parameters:
- mesh
PolyData
The surface to be remeshed.
- meridian
float
The meridian along which to remesh, in degrees longitude.
- boundary
bool
, default=False Whether to attach the remeshed boundary points mask to the resultant mesh.
- check
bool
, default=False Whether to check the remeshed surface for bad cells and free edges.
- rtol
float
, optional The relative tolerance for longitudes close to the āwrap meridianā - see
geovista.common.wrap()
for more.- atol
float
, optional The absolute tolerance for longitudes close to the āwrap meridianā - see
geovista.common.wrap()
for more.
- mesh
- Returns:
Notes
Added in version 0.1.0.
- geovista.filters.VTK_BAD_TRIANGLE_MASK: str = 'BadTriangle'#
vtkIntersectionPolyDataFilter
bad triangle cell array name.