pygplates.GmlMultiPoint¶
- 
class pygplates.GmlMultiPoint¶
- Bases: - pygplates.PropertyValue- A property value representing a multi-point geometry. - 
__init__(multi_point)¶
- Create a property value representing a multi-point geometry. - Parameters: - multi_point ( - MultiPointOnSphere) – the multi-point geometry- multi_point_property = pygplates.GmlMultiPoint(multi_point) 
 - Methods - __init__(multi_point)- Create a property value representing a multi-point geometry. - accept_visitor(visitor)- Accept a property value visitor so that it can visit this property value. - clone()- Create a duplicate of this property value (derived) instance, including a recursive copy of any nested property values that this instance might contain. - get_geometry()- Extracts the - geometryif this property value contains a geometry.- get_multi_point()- Returns the multi-point geometry of this property value. - get_value([time=0])- Extracts the value, of this possibly time-dependent property value, at the reconstruction time. - set_multi_point(multi_point)- Sets the multi-point geometry of this property value. - 
get_multi_point()¶
- Returns the multi-point geometry of this property value. - Return type: - MultiPointOnSphere
 - 
set_multi_point(multi_point)¶
- Sets the multi-point geometry of this property value. - Parameters: - multi_point ( - MultiPointOnSphere) – the multi-point geometry
 
-