hydromt.data_adapter.GeoDataFrameAdapter.to_stac_catalog#

GeoDataFrameAdapter.to_stac_catalog(on_error: ErrorHandleMethod = ErrorHandleMethod.COERCE) Catalog | None[source]#

Convert a geodataframe into a STAC Catalog representation.

Since geodataframes don’t support temporal dimension the datetime property will always be set to 0001-01-01. The collection will contain an asset for each of the associated files.

Parameters:
  • (str (- on_error) – Options are: “raise” to raise an error on failure, “skip” to skip the dataset on failure, and “coerce” (default) to set default values on failure.

  • optional) (The error handling strategy.) – Options are: “raise” to raise an error on failure, “skip” to skip the dataset on failure, and “coerce” (default) to set default values on failure.

Returns:

- Optional[StacCatalog] – None if the dataset was skipped.

Return type:

The STAC Catalog representation of the dataset, or