MultiPoint | Geospatial Types | Teradata Package for Python - MultiPoint - Teradata VantageCloud Lake

Lake - Analyze Your Data with ClearScape Analytics™

Deployment
VantageCloud
Edition
Lake
Product
Teradata VantageCloud Lake
Release Number
Published
February 2025
ft:locale
en-US
ft:lastEdition
2026-02-20
dita:mapPath
tcl1683670667798.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
tcl1683670667798

This function enables end user to create an object holding the multiple Point geometry objects. It allows user to use the same in GeoDataFrame manipulation and processing using any Geospatial function.

Optional argument:

points: Specifies the list of Point objects. If no points are passed, an object for empty MultiPoint is created.

Example 1: Create a MultiPoint in 2D, using x and y coordinates

>>> from teradataml import Point, MultiPoint
>>> p1 = Point(0, 0)
>>> p2 = Point(0, 20)
>>> p3 = Point(20, 20)
>>> p4 = Point(20, 0)
>>> go1 = MultiPoint([p1, p2, p3, p4, p1])
>>> # Print the coordinates.
>>> print(go1.coords)
[(0, 0), (0, 20), (20, 20), (20, 0), (0, 0)]
>>> # Print the geometry type.
>>> print(go1.geom_type)
MultiPoint

Example 2: Create an empty MultiPoint

>>> from teradataml import Point, MultiPoint
>>> poe = MultiPoint()
>>> # Print the coordinates.
>>> print(poe.coords)
EMPTY