erase_component_properties
Erases geo properties that target a component of a geometric object.
Inputs
geometry
The geometry to modify.
component
The target component to delete geo properties from. For example, use point_component
to delete geo properties from the points of a geometry.
properties
Specifies the geo properties to erase by name, for example, point_color
.
- Separate multiple geo property names with spaces.
- You can use the wildcard
*
in expressions, for example,point_user*
to erase all properties that begin with "point_user". - The default value
*
erases all geo properties of the specified component, which can make a geometry invalid according to its schema. - Use a
*
followed by a!
to exclude a property. For example* !point_user*
includes all properties, except ones that begin with the string "point_user"
Outputs
out_geometry
The geometry with the specified properties erased.