List coordinate reference systems

async AsyncCogniteClient.geospatial.list_coordinate_reference_systems(
only_custom: bool = False,
) CoordinateReferenceSystemList

List Coordinate Reference Systems.

Parameters:

only_custom (bool) – list only custom CRSs or not

Returns:

list of CRSs.

Return type:

CoordinateReferenceSystemList

Examples

Fetch all custom CRSs:

>>> from cognite.client import CogniteClient, AsyncCogniteClient
>>> client = CogniteClient()
>>> # async_client = AsyncCogniteClient()  # another option
>>> crs = client.geospatial.list_coordinate_reference_systems(only_custom=True)