GEE Module
gee
Classes:
Name | Description |
---|---|
CompositeCollection |
A class to handle composite collection of Earth Engine data. |
CompositeCollection
A class to handle composite collection of Earth Engine data.
This class initializes collections of Earth Engine based on a provided YAML configuration file, applies specified formulas and selections, and allows for the extraction of temporal data for a given Area of Interest (AOI).
Methods:
Name | Description |
---|---|
extract |
Extracts temporal data for a given AOI and returns it as a pandas DataFrame. |
Methods:
Name | Description |
---|---|
extract |
Extracts temporal data for a given Area of Interest (AOI). |
merged |
Merges all collections in self.collections into a single ImageCollection. |
extract(aoi_coords)
Extracts temporal data for a given Area of Interest (AOI).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
aoi_coords
|
tuple / list
|
Coordinates representing the AOI, either as a Point or as vertices of a Polygon. |
required |
Returns:
Type | Description |
---|---|
pd.DataFrame: A pandas DataFrame containing the extracted data. |
merged()
Merges all collections in self.collections into a single ImageCollection.
Returns:
Type | Description |
---|---|
ee.ImageCollection: A merged collection containing all images from all collections. |