Geometries
s3lst_ds.utilities.geometry_utils
Functions:
| Name | Description |
|---|---|
footprint_aoi_overlap |
Extract valid WKT geometry from a Sentinel product's footprint string, and compute |
load_aoi_to_gdf |
Convert a variety of AOI formats (WKT string, file path, vector file) |
to_convex_hull_wkt |
Get the convex hull of the geometry in |
footprint_aoi_overlap
Extract valid WKT geometry from a Sentinel product's footprint string, and compute overlap fraction (in percentage) with AOI. If no AOI is provided, return 0 %.
Source code in src/s3lst_ds/utilities/geometry_utils.py
load_aoi_to_gdf
Convert a variety of AOI formats (WKT string, file path, vector file) into a GeoDataFrame. Returns None if aoi is None.
Source code in src/s3lst_ds/utilities/geometry_utils.py
to_convex_hull_wkt
Get the convex hull of the geometry in aoi as WKT string. If aoi is None,
return None.