- class geoscript.geom.MultiPoint(*points)¶
A MultiPoint goemetry.
points is a variable number of list/tuple arguments.
>>> MultiPoint([1,2], [3,4]) MULTIPOINT ((1 2), (3 4))points may also be specified as a variable number of Point arguments.
>>> MultiPoint(Point(1,2), Point(3,4)) MULTIPOINT ((1 2), (3 4))