Utility for searching and downloading satellite images of Sentinel 2
Project description
Sentinel-2 Band Downloader
Overview
Sentinel-2 Band Downloader is a simple Python package that allows users to download individual bands from Sentinel-2 satellite data.
This package simplifies the process of connecting to the Sentinel API, retrieving product information, creating output folders, obtaining band links, and downloading bands.
Installation
Using pip
You can install the package using pip:
pip install Sentinel_2_band_downloader
Clone repository
git clone https://github.com/beatriznattrodtdavila/Sentinel_2_band_downloader.git cd Sentinel_2_band_downloader pip install -e .
Example
# Import the Sentinel2_Band_Downloader class
from scr.main.sentinel_2_band_downloader import Sentinel2_Band_Downloader
# Initialize the downloader with log and output paths (replace "/path/to/log and "/path/to/output")
downloader = Sentinel2_Band_Downloader(log_path="/path/to/log", output_base_path="/path/to/output")
# Connect to the Copernicus API (replace 'your_username' and 'your_password')
access_token = downloader.connect_to_api(username="your_username", password="your_password")
# Construct a query for Sentinel-2 products
""" The parameters must be like:
footprint: str
The spatial geometry (POLYGON) of the area of interest.
start_date: str
The start date for the time range of interest in the format 'YYYY-MM-DD'.
end_date: str
The end date for the time range of interest in the format 'YYYY-MM-DD'.
cloud_cover_percentage: str
The maximum allowable cloud cover percentage.
type: str or list
Type of MSI to download
platform_name: str, optional
The name of the Sentinel platform (default: 'SENTINEL-2').
"""
query_params = downloader.construct_query(footprint="your_footprint", start_date="start_date",
end_date="end_date", cloud_cover_percentage="cloud_cover",
type="your_type", platform_name="your_platform_name")
# Write the bands to download
bands_dict = {"L1C":["B01", "B02", "B03", "B04", "B05", "B06", "B07", "B08", "B8A", "B09", "B10", "B11", "B12", "TCI"],
"L2A":{"10m": ["AOT", "B02", "B03", "B04", "B08", "TCI", "WVP"],
"20m": ["AOT","B01", "B02", "B03", "B04", "B05","B06", "B07", "B8A", "B11", "B12", "SCL", "TCI", "WVP"],
"60m": ["AOT","B01", "B02", "B03", "B04", "B05","B06", "B07", "B8A", "B09","B11", "B12", "SCL", "TCI", "WVP"]}}
# Download Sentinel2 Bands
downloader.download_sentinel2_bands(access_token, query_params, bands_dict)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file Sentinel_2_band_downloader-0.2.4.tar.gz.
File metadata
- Download URL: Sentinel_2_band_downloader-0.2.4.tar.gz
- Upload date:
- Size: 14.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a97a0fa09d950c0f2901def0968a0f4184f2cc3519236630708825d873cfb07d
|
|
| MD5 |
8d9f2b6134fcaa805e7673dfa056b638
|
|
| BLAKE2b-256 |
ce0b36abc95f479a9447a79bade23bff3f2b26fdecba5a70585324c8f5b5669e
|
File details
Details for the file Sentinel_2_band_downloader-0.2.4-py3-none-any.whl.
File metadata
- Download URL: Sentinel_2_band_downloader-0.2.4-py3-none-any.whl
- Upload date:
- Size: 14.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
efb0c6097c9fc4915ec16dd994c1614c542148252a56889b37801234c7c51729
|
|
| MD5 |
17ed39f2073e80f75661bae89e878cce
|
|
| BLAKE2b-256 |
d94e3729e927ad88553a958ff40b86eb9fc1dcb0f4ee030f66c0d22d063223a7
|