Skip to main content

A Python library that allows to extract data from satellites, exploiting machine parallelism and relying on Google Earth Engine APIs.

Project description


logo

License: MIT maintained stars forks watchers GitHub last commit
GitHub contributors GitHub issues GitHub pull requests
PyPI - Version Download-size


About

This library[1] provides an easy-to-use, comprehensive and flexible way to work with satellites data (for now: S1_GRD, S2_SR and LANDSAT8_T1_TOA). Its key advantages include: a well-documented API, support for the mainly used satellites, open-source code and regular updates.
In addition to the already mentioned advantages, the implemented code relies on Google Earth Engine (GEE) APIs (used to access satellites data and perform some tasks such as cloud masking, image compositing and time series selection) and exploits multi-threading (designed to work efficiently, by making a lot of parallel I/O requests to GEE).

These advantages make it an excellent tool for anyone working with satellites data, since it allows to generate datasets that can be both easily used for data analysis and efficiently integrated with well-known ML libraries, to deploy models.

Installation

The easiest way to install ee-satellites is by using pip:

$ pip install ee-satellites

(Disclaimer: This library is under continous development.)

Functions

Expand the function you wish to grasp more details about.

get_features() [2]

It allows to get from an input pandas DataFrame composed of fields information, an output DataFrame that contains for each time a selected satellite (sentinel-1, sentinel-2 or landsat-8) passed over the specified fields, within a given time period, all the mean values of some of the most used indexes (optical, radar or thermal).

The filters_params parameter is a list (default: None) containing the values of the Earth Engine filters to be used for extracting Image Collections, with the specified sentinel satellites. For Sentinel-2 the first parameter in the list is the value of the CLOUDY_PIXEL_PERCENTAGE filter (LESS OR EQUAL TO - values in range [0, 100]), whereas for Sentinel-1 the first parameter in the list is the value of the orbitProperties_pass filter (ASCENDING or DESCENDING).

The fields_threads parameter (default: 4) is the number of threads to dedicate to parallelization of GEE API requests over the fields level, the remaining ones instead are used to apply parallelization over dates level. The value of this parameter should be high (with respect to the overall number of threads exploitable) if you have a lot of crop fields but a little time-span to consider, whereas if you have fewer fields but a bigger time-span you should decrease this parameter. Finally, if you have a lot of fields with a lot of dates to process it is optimal to consider half of the overall number of threads available on the device used to perform the I/O requests.
A correct choice of this parameter can drastically reduce the features extraction time.

See the code for a better understanding.

Input DataFrame

The input DataFrame, lets suppose named fields_df, should be structured as follows (just columns position matters):

field_name polygon_coordinates
P-BLD [(-4.202723286616649, 43.39683579015289), (-4...]
P-BLLT1 [(-4.085622203603083, 43.429605845026266), (-4...]
P-BLLT2 [(-4.084840437376829, 43.430826294936246), (-4...]
P-CBRCS1 [(-4.200826431306206, 43.39067464298489), (-4....]
... ...
P-VNS [(-4.151167740565273, 43.40535762666503), (-4....]

How to execute it?

First you have to initialize and authorize the Google Earth Engine APIs.

import ee, ee_satellites

ee.Authenticate()
ee.Initialize()

Then, supposing that you have already loaded the fields_df pandas DataFrame, you have just to run the following code. Change the satellite parameter value in case you want sentinel-1, or landasat-8, indexes extracted for the fields specified (within the time period selected - be careful that the given date format is consistent with ISO 8601 notation). See the above general function description, instead, to comprehend what filters_params and fields_threads parameters are useful for.

df = ee_satellites.get_features(fields_df, '2022-01-01', '2022-12-31', satellite='sentinel-2', filters_params=['40'], fields_threads=3)

Output DataFrame

The output generated DataFrame, namely df, will be structured as follows:

field_name s2_acquisition_date B1 B2 B3 ... MCARI2 BSI GLI ALTERATION SDI
P-BLD 2022-01-06 2.260204 119.981293 550.044218 ... 0.922907 6282.955014 0.513069 2.131255 3484.508503
P-BLD 2022-01-16 13.785714 111.540816 528.481293 ... 0.921371 6545.200602 0.517949 2.127614 3636.382653
... ... ... ... ... ... ... ... ... ... ...
P-VNS 2022-11-17 1133.057399 1364.994619 1726.755157 .... 0.594553 11195.020251 0.070841 1.441033 1939.695067
P-VNS 2022-12-17 955.040359 1208.792825 1617.324664 ... 0.688394 10547.592756 0.107797 1.505526 2913.218834

Contributing

The ee-satellites project is open to contributions. To discuss new ideas and applications, please, reach me via email (please, refer to the Author). To report a bug or request a new feature, please, open an issue to report a bug or to request a new feature.

If you want to contribute, please proceed as follow:

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b ee-satellites/NewFeature)
  3. Commit your Changes (git commit -m 'Create NewFeature')
  4. Push the Branch (git push origin ee-satellites/NewFeature)
  5. Open a Pull Request

License

Distributed under the MIT License.

References

[1]: Amato. F, et al. "Revolutionize your Satellite Data Acquisition with ee-satellites: A Leap Forward in Remote Sensing", DEV Community (Aug 2023).
[2]: A practical example, through a Jupyter Notebook, of the library utilization.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ee_satellites-0.0.15.tar.gz (15.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ee_satellites-0.0.15-py3-none-any.whl (17.3 kB view details)

Uploaded Python 3

File details

Details for the file ee_satellites-0.0.15.tar.gz.

File metadata

  • Download URL: ee_satellites-0.0.15.tar.gz
  • Upload date:
  • Size: 15.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.10

File hashes

Hashes for ee_satellites-0.0.15.tar.gz
Algorithm Hash digest
SHA256 66c2267661d158581eceabf7eab050e1ec57ac9b0a877a99c59ebc3fa8053aa6
MD5 06b8009e6cce7400b686287b3bede6f7
BLAKE2b-256 4694a507cd2528cfd7d225c03c730736cfe8c721dec06ae066763f9c1c7b5342

See more details on using hashes here.

File details

Details for the file ee_satellites-0.0.15-py3-none-any.whl.

File metadata

  • Download URL: ee_satellites-0.0.15-py3-none-any.whl
  • Upload date:
  • Size: 17.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.10

File hashes

Hashes for ee_satellites-0.0.15-py3-none-any.whl
Algorithm Hash digest
SHA256 925d8ccfdfefc8aa2973d3e8f59d8578591f885aa3912586f57fececdc54bf3b
MD5 e5c23f399b156cdc3e4f0a9a52eaeb4a
BLAKE2b-256 94f3d30fe5ed1186431924c85815d7a9da84ecefdabd84531a00d972b29d1b8a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page