Skip to main content

Add your description here

Project description

izisat

izisat is a Python library designed to facilitate the automated download of Sentinel-2 satellite imagery bands from the Copernicus Open Access Hub (previously SciHub). It provides functionalities to connect to the Copernicus API, construct queries based on geographical footprints and time ranges, retrieve product information, and download specified bands to a local directory structure.

Features

  • API Connection: Securely connect to the Copernicus Open Access Hub using provided credentials.
  • Query Construction: Build complex queries for Sentinel-2 products based on:
    • Geographical footprint (WKT format)
    • Start and End Dates
    • Cloud Cover Percentage
    • Product Type (e.g., L2A)
    • Platform Name (e.g., SENTINEL-2)
  • Product Retrieval: Fetch a list of available Sentinel-2 products matching the constructed query.
  • Automated Folder Creation: Organize downloaded bands into a structured directory based on product information (e.g., auxiliary/Sentinel-2/YYYY/MM/DD/TILE/L2A/RESOLUTION/).
  • Band Downloading: Download specific Sentinel-2 bands (e.g., B02, B03, B04, B08) for retrieved products.

Installation

(Placeholder: Add installation instructions here, e.g., using pip and a requirements.txt or pyproject.toml)

Usage

The IZISentinel class is the main entry point for interacting with the library. Below is an example demonstrating how to use izisat to download Sentinel-2 bands.

import geopandas as gpd
from datetime import datetime, timedelta
from izisat.izisentinel import IZISentinel

# Configuration
DOWNLOAD_FOLDER = '/home/ppz/Documentos/coding/izisat/auxiliary' # Adjust as needed
MAX_CLOUD_COVER = 99
BANDS_DICT = {"L2A":{"10m": ["B02", "B03","B04", "B08"]}} # Specify bands and resolutions
PLATFORM_NAME = "SENTINEL-2"
SATELLITE_TYPE = 'L2A' # Level 2A products (bottom-of-atmosphere corrected)
COPERNICUS_USER='your_copernicus_username' # Replace with your Copernicus username
COPERNICUS_PASSWD='your_copernicus_password' # Replace with your Copernicus password

# Define date range
today = datetime.now().strftime('%Y-%m-%d')
one_week_ago = (datetime.now() - timedelta(days=7)).strftime('%Y-%m-%d')

# Initialize the downloader
downloader = IZISentinel(output_base_path=DOWNLOAD_FOLDER)

# 1. Connect to Copernicus API
access_token, refresh_token, dt_access_token = downloader.connect_to_api(
    username=COPERNICUS_USER,
    password=COPERNICUS_PASSWD
)

# 2. Load geographical footprint (example using a GeoJSON file)
# Replace 'path/to/your/farm.geojson' with the actual path to your GeoJSON file
# The GeoJSON should contain a polygon representing your area of interest.
try:
    farm = gpd.read_file('/home/ppz/Documentos/coding/forestry_monitor/data/vectors/farms/farms.geojson')
    footprint = farm.iloc[0].geometry.wkt # Assuming the first feature's geometry is the desired footprint
except Exception as e:
    print(f"Error loading GeoJSON or extracting footprint: {e}")
    print("Please ensure 'forestry_monitor/data/vectors/farms/farms.geojson' exists and is valid, or provide a WKT string directly.")
    footprint = "POLYGON ((<lon1> <lat1>, <lon2> <lat2>, ...))" # Example placeholder for direct WKT

# 3. Construct the query
query = downloader.construct_query(
    footprint=footprint,
    end_date=today,
    start_date=one_week_ago,
    cloud_cover_percentage=MAX_CLOUD_COVER,
    type=SATELLITE_TYPE,
    platform_name=PLATFORM_NAME
)

# 4. Retrieve products
products = downloader.products_from_sentinel_2(query)

# 5. Download specified bands
if products:
    images_downloaded = downloader.download_sentinel2_bands(
        access_token,
        products,
        BANDS_DICT,
        dt_access_token,
        refresh_token,
        tile=None # Specify a tile if you want to filter by tile, otherwise None
    )
    print(f"Downloaded images info: {images_downloaded}")
else:
    print("No products found for the given query.")

Dependencies

The core dependencies for izisat include:

  • loguru: For logging.
  • geopandas: For handling geographical data (used in the example for footprint).
  • datetime: For date and time operations.

(Note: Specific versions and other implicit dependencies from izisat.misc modules would be listed in pyproject.toml or requirements.txt)

Project Structure

.
├── auxiliary/
│   └── Sentinel-2/  # Default download location for Sentinel-2 bands
├── src/
│   └── izisat/
│       ├── __init__.py
│       ├── izisentinel.py  # Main class for Sentinel-2 band downloading
│       └── misc/
│           ├── __init__.py
│           ├── connections.py # Handles API connections to Copernicus
│           ├── dates.py       # Utility functions for date handling
│           ├── files.py       # Utility functions for file and directory operations
│           └── utils.py       # General utility functions (e.g., query construction, product info retrieval)
├── .gitignore
├── LICENSE
├── pyproject.toml
├── README.md
└── uv.lock

How to Contribute

We welcome contributions to izisat! If you'd like to contribute, please follow these guidelines:

  1. Reporting Bugs: If you find a bug, please open an issue on the GitHub repository. Provide a clear and concise description of the bug, steps to reproduce it, and expected behavior.
  2. Suggesting Features: For new features or enhancements, open an issue to discuss your ideas.
  3. Submitting Pull Requests:
    • Fork the repository and create a new branch for your changes.
    • Ensure your code adheres to the project's coding style.
    • Write clear and concise commit messages.
    • Include tests for new features or bug fixes.
    • Submit a pull request with a detailed description of your changes.

Thank you for your contributions!

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

izisat-1.0.13.tar.gz (24.4 kB view details)

Uploaded Source

Built Distribution

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

izisat-1.0.13-py3-none-any.whl (25.7 kB view details)

Uploaded Python 3

File details

Details for the file izisat-1.0.13.tar.gz.

File metadata

  • Download URL: izisat-1.0.13.tar.gz
  • Upload date:
  • Size: 24.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.10

File hashes

Hashes for izisat-1.0.13.tar.gz
Algorithm Hash digest
SHA256 f7f121ab4c6b7e30a5938e84e0a4fce63df84c8a88bd90e01461d5cdcf2e7484
MD5 85209b5a937bb5f3efb24aed07f666aa
BLAKE2b-256 4441a79b60b2a0b7a37cfc645d777bdf2c6b2b7cb21966685c6a9c9c233aef25

See more details on using hashes here.

File details

Details for the file izisat-1.0.13-py3-none-any.whl.

File metadata

  • Download URL: izisat-1.0.13-py3-none-any.whl
  • Upload date:
  • Size: 25.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.10

File hashes

Hashes for izisat-1.0.13-py3-none-any.whl
Algorithm Hash digest
SHA256 a70b7275d9c2e4660f2ba50614aec46ce62b7393faadb5eccf7a5bc61c12d67d
MD5 f58a9430a66a1a0967628e9d74155a2a
BLAKE2b-256 d9f20010584940996a2c52a979b5cae2da04e8d54b2946ae051eb4be8819764c

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