Skip to main content

Extract Sentinel-1 GRD time-series images over a given area from google earth engine

Project description

GEE SAR Fetcher

An easy-to-use Python library to download SAR GRD imagery from Google Earth Engine.

Introduction

Access Google's multi-petabytes of SAR Imagery data from your python code with no dimension restraint. Simply supply coordinates, a time interval and obtain a stack of Sentinel-1 preprocessed PolSAR images. This enables quick data analysis of GRD images to get better insights of the temporal dimension in SAR data without having to bother with essential but potentially time-consuming steps such as coregistration or calibration.

Compatible with python 3. Documentation Status

Usage

Python Import

The main function of this library is the fetcher function:

from geesarfetcher import fetcher
from datetime import date, timedelta

fetch(
    top_left = [-104.77431630331856, 41.729889598264826], 
    bottom_right = [-104.65140675742012, 41.81515375846025],
    start_date = date.today()-timedelta(days=15),
    end_date = date.today(),
    ascending=False
) # returns a dictionnary with access to the data through the 'stack' keyword and to its timestamps through the 'timestamps' keyword

Installation

Access to Google Earth Engine is conditioned by the obtention of a GEE account. Once created, you can install the geesarfetcher API and register an identifying token for your Python working environment using the following commands:

pip install geesarfetcher
earthengine authenticate

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Please make sure to update tests as appropriate.

License

MIT

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

geesarfetcher-0.1.0.tar.gz (8.8 kB view hashes)

Uploaded Source

Built Distribution

geesarfetcher-0.1.0-py3-none-any.whl (9.4 kB view hashes)

Uploaded Python 3

Supported by

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