Delete Raster

async AsyncCogniteClient.geospatial.delete_raster(
feature_type_external_id: str,
feature_external_id: str,
raster_property_name: str,
) None

Delete raster.

Parameters:
  • feature_type_external_id (str) – No description.

  • feature_external_id (str) – one feature or a list of features to create

  • raster_property_name (str) – the raster property name

Examples

Delete a raster in a feature raster property:

>>> from cognite.client import CogniteClient, AsyncCogniteClient
>>> client = CogniteClient()
>>> # async_client = AsyncCogniteClient()  # another option
>>> feature_type = ...
>>> feature = ...
>>> raster_property_name = ...
>>> client.geospatial.delete_raster(
...     feature_type.external_id, feature.external_id, raster_property_name
... )